代码大更新

This commit is contained in:
梁州 2025-04-26 10:38:45 +08:00
parent 3a77654dfd
commit 33e8cbecf8
18 changed files with 765 additions and 814 deletions

View File

@ -4254,9 +4254,23 @@
}
},
"node_modules/caniuse-lite": {
"version": "1.0.30001434",
"resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001434.tgz",
"integrity": "sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA=="
"version": "1.0.30001715",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001715.tgz",
"integrity": "sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw==",
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/browserslist"
},
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
]
},
"node_modules/case-sensitive-paths-webpack-plugin": {
"version": "2.4.0",
@ -15376,9 +15390,9 @@
}
},
"caniuse-lite": {
"version": "1.0.30001434",
"resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001434.tgz",
"integrity": "sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA=="
"version": "1.0.30001715",
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001715.tgz",
"integrity": "sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw=="
},
"case-sensitive-paths-webpack-plugin": {
"version": "2.4.0",

View File

@ -1,7 +1,7 @@
import axios from 'axios'
const request = axios.create({
baseURL: 'https://s4wwjasrsp01.ap.cat.com/wmsServer/wms',
baseURL: 'http://localhost:12315/wms',
timeout: 5000
})

View File

@ -22,11 +22,31 @@
<el-date-picker v-model="dbsQueryFormEntity.planStartDate" type="date"
placeholder="计划开工日期" :shortcuts="shortcuts" style="width: 196px;" clearable/>
</el-form-item>
<el-form-item label="需求工单列表">
<el-select
v-model="selectedOrders"
multiple
collapse-tags
collapse-tags-tooltip
placeholder="请选择工单列表"
style="width: 196px"
>
<el-option
v-for="item in orderOptions"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
</el-row>
<div style="align-content: center;">
<el-row>
<el-button type="primary" class="btn-search" @click="search()">查询</el-button>
<el-button type="warning" class="btn-search" @click="clearQuery()">清除输入</el-button>
<el-button style="background-color: #6495ED;" class="btn-search"
@click="">生成需求
</el-button>
</el-row>
<el-row>
<el-button style="background-color: #00CED1;" class="btn-search"
@ -35,6 +55,9 @@
<el-button type="success" class="btn-search"
@click="exportExcel()">导出excel
</el-button>
<el-button style="background-color: #ADD8E6;" class="btn-search"
@click="">生成看板
</el-button>
</el-row>
</div>
</div>
@ -86,9 +109,9 @@
show-overflow-tooltip/>
<el-table-column prop="remark" label="备注" min-width="120px" sortable="custom"
show-overflow-tooltip/>
<el-table-column fixed="right" label="操作" width="120px">
<el-table-column fixed="right" label="操作" width="240px">
<template v-slot="scope">
<!-- <el-button plain type="primary" @click="editCurrentRowStock(scope.row)">编辑</el-button>-->
<el-button plain type="primary" @click="addRequirement(scope.row)">添加需求</el-button>
<el-button plain type="danger" @click="deleteCurrentRow(scope.row)">删除</el-button>
</template>
</el-table-column>
@ -265,6 +288,8 @@ let dbsId = ''
let dbsEditFormRef = ref()
let dbsEditFormEntity = reactive({})
let showDbsUploadDialog = ref(false)
let selectedOrders = ref([])
let orderOptions = ref([])
/**
* 系统方法
*/
@ -425,6 +450,38 @@ const deleteCurrentRow = (row) => {
const openUploadDialog = () => {
showDbsUploadDialog.value = true
}
//
const addRequirement = (row) => {
const workOrder = row.workOrder
if (workOrder === undefined || workOrder === '') {
ElMessage.error('请先选择工单')
return
}
//
if (orderOptions.value.length > 0) {
const oldOption = orderOptions.value.find((item) => {return item.value === workOrder})
if (oldOption === undefined) {
orderOptions.value.push({
label: workOrder,
value: workOrder
})
}
} else {
orderOptions.value.push({
label: workOrder,
value: workOrder
})
}
addSelectWorkOrders(workOrder)
}
//
const addSelectWorkOrders = (workOrder) => {
if (selectedOrders.value.find((item) => {return item === workOrder}) === undefined) {
selectedOrders.value.push(workOrder)
} else {
ElMessage.error('请勿重复添加工单')
}
}
</script>
<style scoped>
.content {

View File

@ -1,152 +1,287 @@
<template>
<div style="margin-bottom: 15px">
<el-config-provider :locale="zhCn">
<el-row>
<el-input v-model="goodsIdQuery" style="width: 256px; margin-right: 10px;" placeholder="零件号" />
<el-input v-model="vehicleNoQuery" style="width: 256px; margin-right: 10px;" placeholder="箱号" />
<el-button type="primary" @click="search()">搜索</el-button>
<el-button type="warning" @click="reset()">重置</el-button>
<el-button type="success" @click="refresh()">刷新</el-button>
</el-row>
<br />
<el-table :data="tasks" stripe border v-loading="loading" style="width: 100%" max-height="684px"
class="table-class" :header-cell-style="{ 'text-align': 'center' }" :cell-style="{ 'text-align': 'center' }">
<el-table-column prop="goodsId" label="零件号" fixed="left" min-width="120px" />
<el-table-column prop="vehicleNo" label="箱号" fixed="left" min-width="120px" />
<el-table-column prop="goodsName" label="零件名称" min-width="120px" />
<el-table-column prop="taskType" label="任务类型" :formatter="taskTypeFormat" sortable min-width="120px" />
<el-table-column prop="taskGroup" label="任务组" min-width="120px" />
<el-table-column prop="origin" label="起点" min-width="120px" />
<el-table-column prop="destination" label="终点" min-width="120px" />
<el-table-column prop="pickStand" label="拣选站台" min-width="120px" />
<el-table-column prop="weight" label="重量" min-width="120px" />
<el-table-column prop="productionDate" label="生产日期" :formatter="dateFormat" min-width="120px" />
<el-table-column prop="expirationDate" label="有效日期" :formatter="dateFormat" min-width="120px" />
<el-table-column prop="operateNum" label="操作数量" min-width="120px" />
<el-table-column prop="totalNum" label="库存数量" min-width="120px" />
<el-table-column prop="taskPriority" label="任务优先级" sortable min-width="120px" />
<el-table-column prop="kateTaskId" label="配件任务号" sortable min-width="140px" />
<el-table-column prop="userName" label="操作人员姓名" min-width="120px" />
<el-table-column prop="createTime" label="创建时间" :formatter="timeFormat" min-width="120px" />
<el-table-column prop="finishTime" label="任务完成时间" :formatter="timeFormat" min-width="120px" />
<el-table-column prop="taskStatus" label="任务状态" fixed="right" :formatter="taskStatusFormat" min-width="120px" />
<!-- <el-table-column fixed="right" label="操作" width="180px">
<template v-slot="scope">
<el-popconfirm confirm-button-text="" cancel-button-text="" title="请确认是否取消任务?" :hide-after="10" @confirm="">
<template #reference>
<el-button plain type="warning">取消</el-button>
</template>
</el-popconfirm>
<el-popconfirm confirm-button-text="" cancel-button-text="" title="请确认是否完成任务?" :hide-after="10" @confirm="">
<template #reference>
<el-button plain type="primary">完成</el-button>
</template>
</el-popconfirm>
</template>
</el-table-column> -->
</el-table>
<br />
<el-pagination v-model:current-page="currentPage" v-model:page-size="pageSize" :page-sizes="[10, 25, 50]"
:small="false" :disabled="false" :background="false" :default-page-size="10"
layout="total, sizes, prev, pager, next, jumper" :total="total" @size-change="search"
@current-change="search" />
</el-config-provider>
</div>
<el-config-provider :locale="zhCn">
<el-container class="content">
<div class="work-area">
<fieldset class="search-area">
<el-form ref="searchQueryFormRef" :model="searchQueryFormEntity" :label-position="labelPosition"
label-width="158px" style="max-width: 100%" status-icon>
<div style="display: flex;justify-content: space-between;">
<el-row>
<el-form-item label="任务类型">
<el-select-v2 style="width: 196px" v-model="searchQueryFormEntity.outType" placeholder="任务类型"
:options="addAllOptionOfOptions(outTypeOptions)"
@change="search()"></el-select-v2>
</el-form-item>
<el-form-item label="箱号">
<el-input v-model="searchQueryFormEntity.vehicleId" @keyup.enter="search()" clearable/>
</el-form-item>
<el-form-item label="料号">
<el-input v-model="searchQueryFormEntity.goodsId" @keyup.enter="search()" clearable/>
</el-form-item>
</el-row>
<div style="align-content: center;">
<el-row>
<el-button type="primary" class="btn-search" @click="search()">查询</el-button>
<el-button type="warning" class="btn-search" @click="clearQuery()">清除输入</el-button>
</el-row>
</div>
</div>
</el-form>
</fieldset>
<div class="table-area">
<el-table :data="tableData" stripe border v-loading="tableLoading" class="table-class"
:max-height="maxHeight" highlight-current-row @row-click="getCurrentRow"
:header-cell-style="{ 'text-align': 'center' }" :cell-style="{ 'text-align': 'center' }"
@sort-change="handleSortChange">
<el-table-column width="65px" fixed="left">
<template v-slot="scope">
<el-radio :label="scope.row.taskId" v-model="taskId">&nbsp;</el-radio>
</template>
</el-table-column>
<el-table-column prop="taskId" label="任务号" fixed="left" min-width="120px" sortable="custom"
show-overflow-tooltip/>
<el-table-column prop="outType" label="任务类型" fixed="left" :formatter="outsTypeFormat" min-width="120px"
sortable="custom"
show-overflow-tooltip/>
<el-table-column prop="vehicleId" label="箱号" fixed="left" min-width="120px" sortable="custom"
show-overflow-tooltip/>
<el-table-column prop="goodsId" label="料号" min-width="120px" sortable="custom"
show-overflow-tooltip/>
<el-table-column prop="needNum" label="需求数量"
min-width="120px" sortable="custom" show-overflow-tooltip/>
<el-table-column prop="distributeNum" label="已分配数量" min-width="120px" sortable="custom"
show-overflow-tooltip/>
<el-table-column prop="pickNum" label="已拣选数量" min-width="120px"
sortable="custom" show-overflow-tooltip/>
<el-table-column prop="destination" label="目标站台" min-width="120px" sortable="custom"
show-overflow-tooltip/>
<el-table-column prop="userName" label="用户" min-width="120px"
sortable="custom" show-overflow-tooltip/>
<el-table-column prop="reason" label="原因" min-width="120px" sortable="custom"
show-overflow-tooltip/>
<el-table-column prop="requestTime" label="请求时间" :formatter="timeFormat" min-width="120px"
sortable="custom"
show-overflow-tooltip/>
<!-- <el-table-column fixed="right" label="操作" width="170px">
<template v-slot="scope">
<div style="display: inline-block; align-content: center;">
<el-button type="primary"
@click="editCurrentRowFormEntity(scope.row)">编辑</el-button>
</div>
</template>
</el-table-column> -->
</el-table>
<br/>
<el-pagination v-model:current-page="baseTableQuery.currentPage"
v-model:page-size="baseTableQuery.pageSize" :page-sizes="[10, 25, 50]" :small="false"
:disabled="false" :background="false" :default-page-size="10" @size-change="search"
@current-change="search" layout="total, sizes, prev, pager, next, jumper"
:total="baseTableQuery.total"/>
</div>
</div>
</el-container>
</el-config-provider>
</template>
<script setup>
import { getTaskRecords } from '@/api/record.js'
import { dateFormatter, taskStatusFormatter, timeFormatter } from '@/utils/formatter.js'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
import { errorBox } from '@/utils/myMessageBox.js'
import store from '@/store'
</script>
<script>
export default {
name: 'inventoryRecord',
data() {
return {
pageInfo: {},
tasks: [],
currentPage: 1,
pageSize: 10,
total: 0,
goodsIdQuery: '',
vehicleNoQuery: '',
loading: true
}
},
mounted() {
this.search()
},
methods: {
dateFormat: (row, column, cellValue, index) => {
return dateFormatter(cellValue)
},
timeFormat: (row, column, cellValue, index) => {
return timeFormatter(cellValue)
},
taskStatusFormat: (row, column, cellValue, index) => {
return taskStatusFormatter(cellValue)
},
taskTypeFormat: (row, column, cellValue, index) => {
switch (cellValue) {
case 1: return '入库'
case 2: return '出库'
case 3: return '盘点'
default: return '未知'
}
},
search() {
this.loading = true
this.pageInfo.pageNum = this.currentPage
this.pageInfo.pageSize = this.pageSize
const tableRequest = {
page: this.pageInfo,
param: {
taskType: 3,
goodsId: this.goodsIdQuery.trim(),
vehicleNo: this.vehicleNoQuery.trim(),
userName: store.getters.getUserName
}
}
getTaskRecords(tableRequest).then(res => {
const tableResponse = res.data
if (tableResponse.code == 0) {
this.tasks = tableResponse.rows
this.total = tableResponse.total
} else {
errorBox(tableResponse.message)
}
}).catch(err => {
console.log(err)
errorBox('查询盘点记录错误')
})
this.loading = false
},
reset() {
this.goodsIdQuery = ''
this.vehicleNoQuery = ''
this.search()
},
},
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
import {queryOutsByPage} from '@/api/taskQuery.js'
import {timeFormatter, outTaskTypeFormatter} from '@/utils/formatter.js'
import {ref, reactive, onMounted, nextTick, onBeforeUnmount} from 'vue'
import {ElMessage} from 'element-plus'
import {genTableRequest} from '@/utils/generator.js'
import {labelPosition} from '@/constant/form.js'
import {outTypeOptions} from '@/constant/options.js'
import {addAllOptionOfOptions} from '@/utils/generator.js'
import {loading} from '@/utils/loading'
/**
* 常量定义
*/
const STAND_ID = store.getters.getStandId
const USER_NAME = store.getters.getUserName
/**
* 变量定义
*/
let maxHeight = ref(window.innerHeight * 0.55)
let tableLoading = ref(false)
let tableData = ref([])
let baseTableQuery = reactive({
currentPage: 1,
pageSize: 10,
total: 0,
sortBy: new Map([['requestTime', true]]),//
standId: STAND_ID,
userName: USER_NAME
})
let searchQueryFormEntity = reactive({
vehicleId: '',
goodsId: '',
outType: -99
})
let searchQueryFormRef = ref()
let taskId = ''
/**
* 系统方法
*/
onMounted(() => {
nextTick(() => {
window.addEventListener('resize', resizeHeight)
search()
})
})
onBeforeUnmount(() => {
nextTick(() => {
window.removeEventListener('resize', resizeHeight)
})
})
const resizeHeight = () => {
maxHeight.value = window.innerHeight * 0.55
}
/**
* 自定义方法
*/
//
const search = () => {
tableLoading.value = true
let request = genTableRequest(baseTableQuery)
//
request.vehicleId = searchQueryFormEntity.vehicleId.trim()
request.goodsId = searchQueryFormEntity.goodsId.trim()
request.out = searchQueryFormEntity.outType === -99 ? null : searchQueryFormEntity.outType
queryOutsByPage(request).then((res) => {
const response = res.data
if (response.code === 0) {
const data = response.data
if (data != null) {
tableData.value = data.lists
baseTableQuery.total = data.total
} else {
tableData.value = []
baseTableQuery.total = 0
}
} else {
ElMessage.error(response.message)
}
}).catch(err => {
console.log(err)
ElMessage.error('查询数据异常。')
}).finally(() => {
tableLoading.value = false
})
}
const clearQuery = () => {
searchQueryFormEntity.vehicleId = ''
searchQueryFormEntity.goodsId = ''
}
const handleSortChange = (data) => {
if (baseTableQuery.sortBy.has(data.prop)) {
baseTableQuery.sortBy.delete(data.prop)
}
baseTableQuery.sortBy.set(data.prop, data.order === 'ascending')
search()
}
const getCurrentRow = (row) => {
taskId = row.taskId
}
const timeFormat = (row, column, cellValue, index) => {
return timeFormatter(cellValue)
}
const outsTypeFormat = (row, column, cellValue, index) => {
return outTaskTypeFormatter(cellValue)
}
</script>
<style scoped>
.el-pagination {
padding-left: 5px;
.content {
display: flex;
width: 100%;
}
.el-row .el-button {
width: 72px;
margin-left: 0px;
margin-right: 5px;
.work-area {
width: 100%;
/* padding: 5px; */
}
.search-area {
margin: auto;
min-height: fit-content;
max-height: 40%;
margin-bottom: 10px;
min-width: inherit;
border: solid 1px;
border-radius: 10px;
box-shadow: 0px 15px 10px -15px #000;
overflow: auto;
padding: 10px;
}
.table-area {
margin: auto;
min-height: fit-content;
max-height: 60%;
margin-bottom: 10px;
min-width: inherit;
border: solid 1px;
border-radius: 10px;
box-shadow: 0px 15px 10px -15px #000;
overflow: auto;
padding: 10px;
}
.el-form-item {
margin: 5px 5px 5px 5px;
}
.el-form-item .el-input {
width: 196px;
}
.el-form-item .el-input-number {
width: 196px;
}
.table-class {
width: 100%;
margin: 5px 5px 5px 5px;
width: inherit;
}
.el-pagination {
padding-left: 5px;
}
.my-autocomplete li {
width: 196px;
line-height: normal;
padding: 7px;
}
.my-autocomplete li .name {
text-overflow: ellipsis;
overflow: hidden;
}
.my-autocomplete li .addr {
font-size: 12px;
color: #b4b4b4;
}
.my-autocomplete li .highlighted .addr {
color: #ddd;
}
.my-autocomplete li .goods_id {
color: brown;
}
.my-autocomplete li .goods_name {
color: cornflowerblue;
}
.btn-search {
height: 30px;
width: 80px;
margin: auto 5px 5px auto;
color: black;
}
</style>

View File

@ -226,8 +226,7 @@
<script setup>
import store from '@/store'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
import { queryStocksByPage, updateStockInfo } from '@/api/stock.js'
import { getGoodsInfoByGoodsId } from '@/api/goods.js'
import { queryStocksByPage } from '@/api/stock.js'
import { exportStockExcel } from '@/api/excel.js'
import { dateFormatter, locationFormatter, timeFormatter, yesOrNoFormatter } from '@/utils/formatter.js'
import { ref, reactive, onMounted, nextTick, onBeforeUnmount } from 'vue'
@ -297,8 +296,8 @@ const search = () => {
request.locationId = stockQuery.locationId.trim()
request.stockStatus = stockQuery.stockStatus == -99 ? null : stockQuery.stockStatus
request.goodsStatus = stockQuery.goodsStatus == -99 ? null : stockQuery.goodsStatus
request.fromDate = stockQuery.fromDate
request.toDate = stockQuery.toDate
request.fromDate = stockQuery.fromDate == null ? null : dateFormatter(stockQuery.fromDate)
request.toDate = stockQuery.toDate == null ? null : dateFormatter(stockQuery.toDate)
queryStocksByPage(request).then((res) => {
const response = res.data
if (response.code == 0) {

View File

@ -1,462 +1,8 @@
<template>
<el-config-provider :locale="zhCn">
<el-container class="content">
<div class="work-area">
<fieldset class="main-area">
<el-form ref="workFormRef" :model="workFormEntity" :label-position="labelPosition"
label-width="158px" style="max-width: 100%" :rules="rules" status-icon>
<div style="display: flex; justify-content: space-between;">
<el-row>
<el-form-item label="计划开工日期" prop="planStartDate">
<el-date-picker v-model="workFormEntity.planStartDate" type="date"
placeholder="选择开工日期" :shortcuts="shortcuts" style="width: 196px;" clearable />
</el-form-item>
<el-form-item label="工单号" prop="workOrder">
<el-select v-model="workFormEntity.workOrder" filterable default-first-option
placeholder="请选择工单号" style="width: 196px" :loading="optionLoading" remote
:remote-method="(query) => {
workFormQuery.workOrder = query
initWorkOptions()
}" remote-show-suffix reserve-keyword clearable>
<el-option v-for="item in workOptions.workOrder" :key="item" :label="item"
:value="item" />
</el-select>
</el-form-item>
<el-form-item label="成品号" prop="productId">
<el-select v-model="workFormEntity.productId" filterable default-first-option
placeholder="请选择成品号" style="width: 196px" :loading="optionLoading" remote
:remote-method="(query) => {
workFormQuery.productId = query
initWorkOptions()
}" remote-show-suffix reserve-keyword clearable>
<el-option v-for="item in workOptions.productId" :key="item" :label="item"
:value="item" />
</el-select>
</el-form-item>
<el-form-item label="单片号" prop="singleProductId">
<el-select v-model="workFormEntity.singleProductId" filterable default-first-option
placeholder="请选择单片号" style="width: 196px" :loading="optionLoading" remote
:remote-method="(query) => {
workFormQuery.singleProductId = query
initWorkOptions()
}" remote-show-suffix reserve-keyword clearable>
<el-option v-for="item in workOptions.singleProductId" :key="item" :label="item"
:value="item" />
</el-select>
</el-form-item>
<el-form-item label="料盒号" prop="boxNo">
<el-select v-model="workFormEntity.boxNo" filterable default-first-option
placeholder="请选择料盒号" style="width: 196px" :loading="optionLoading" remote
:remote-method="(query) => {
workFormQuery.boxNo = query
initWorkOptions()
}" remote-show-suffix reserve-keyword clearable>
<el-option v-for="item in workOptions.boxNo" :key="item" :label="item"
:value="item" />
</el-select>
</el-form-item>
<el-form-item label="原材料号" prop="goodsId">
<el-select v-model="workFormEntity.goodsId" filterable default-first-option
placeholder="请选择原材料号" style="width: 196px" :loading="optionLoading" remote
:remote-method="(query) => {
workFormQuery.goodsId = query
initWorkOptions()
}" remote-show-suffix reserve-keyword clearable>
<el-option v-for="item in workOptions.goodsId" :key="item" :label="item"
:value="item" />
</el-select>
</el-form-item>
</el-row>
<el-row>
<el-button type="success"
style="height: 50px; width: 100px; margin: auto 5px auto 5px; font-size: large; color: black;"
@click="confirmStart()">确认配料</el-button>
<el-button type="warning"
style="height: 50px; width: 100px; margin: auto 5px auto 5px; font-size: large; color: black;"
@click="resetWorkFormQuery()">清除选择</el-button>
</el-row>
</div>
</el-form>
</fieldset>
<fieldset class="confirm-area">
<el-form ref="confirmRef" :model="confirmEntity" :label-position="labelPosition" label-width="158px"
style="max-width: 100%" :rules="confirmRules" status-icon>
<div style="display: flex; justify-content: space-between;">
<el-row>
<el-row style="border-bottom: dashed 1px black;">
<el-form-item label="工单号" prop="workOrder">
<el-input v-model="confirmEntity.workOrder" disabled />
</el-form-item>
<el-form-item label="成品号" prop="productId">
<el-input v-model="confirmEntity.productId" disabled />
</el-form-item>
<el-form-item label="单片号" prop="singleProductId">
<el-input v-model="confirmEntity.singleProductId" disabled />
</el-form-item>
<el-form-item label="物料号" prop="goodsId">
<el-input v-model="confirmEntity.goodsId" disabled />
</el-form-item>
<el-form-item label="料盒号" prop="boxNo">
<el-input v-model="confirmEntity.boxNo" disabled />
</el-form-item>
<el-form-item label="计划拣选数量" prop="planPickQty">
<el-input v-model="confirmEntity.planPickQty" disabled />
</el-form-item>
<el-form-item label="实际拣选数量" prop="realPickQty">
<el-input-number v-model.number="confirmEntity.realPickQty"
controls-position="right" :min="0" clearable />
</el-form-item>
</el-row>
<el-row>
<el-form-item label="箱号" prop="vehicleId">
<el-input v-model="confirmEntity.vehicleId" disabled />
</el-form-item>
<el-form-item label="物料号" prop="goodsId">
<el-input v-model="confirmEntity.goodsId" disabled />
</el-form-item>
<el-form-item label="是否库外料" prop="isOut">
<el-input v-model="confirmEntity.isOut" :formatter="formatter => {
return confirmEntity.isOut === 1 ? '是' : '否'
}" disabled />
</el-form-item>
<el-form-item label="存放区域" prop="putArea">
<el-input v-model="confirmEntity.putArea" disabled />
</el-form-item>
<el-form-item label="计划剩余数量" prop="planRemainQty">
<el-input v-model="confirmEntity.planRemainQty" disabled />
</el-form-item>
<el-form-item label="实际剩余数量" prop="realRemainQty">
<el-input-number v-model.number="confirmEntity.realRemainQty"
controls-position="right" :min="0" clearable />
</el-form-item>
</el-row>
</el-row>
<el-row>
<el-button type="primary"
style="height: 50px; width: 100px; margin: auto 5px auto 5px; font-size: large; color: black;"
@click="showBoxSummary()">显示料盒</el-button>
<el-button type="success"
style="height: 50px; width: 100px; margin: auto 5px auto 5px; font-size: large; color: black;"
@click="confirmOrRelease()">确认/放行</el-button>
<el-button type="warning"
style="height: 50px; width: 100px; margin: auto 5px auto 5px; font-size: large; color: black;"
@click="resetWorkFormQuery()">打印标签</el-button>
</el-row>
</div>
</el-form>
</fieldset>
<el-dialog v-model="boxShowFlag" title="料盒总览" width="50%" center>
<el-table :data="boxSummary" stripe border class="table-class" max-height="450px"
:header-cell-style="{ 'text-align': 'center' }" :cell-style="{ 'text-align': 'center' }">
<el-table-column prop="workOrder" label="工单号" fixed="left" />
<el-table-column prop="productId" label="成品号" />
<el-table-column prop="singleProductId" label="单片号" />
<el-table-column prop="boxNo" label="料盒号" />
<el-table-column prop="boxQty" label="料盒数量" />
</el-table>
</el-dialog>
</div>
</el-container>
</el-config-provider>
</template>
<script setup>
import store from '@/store'
import { queryKateWorks, initWorks, getCurrentWorks, confirmCurrentWork } from '@/api/kateWork.js'
import { errorBox, warningBox } from '@/utils/myMessageBox.js'
import { ElMessage, formatter } from 'element-plus'
import { dateFormatter, timeFormatter } from '@/utils/formatter.js'
import { reactive, ref } from 'vue'
import loading from '@/utils/loading'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
</script>
<script>
export default {
name: 'test',
data() {
return {
standId: store.getters.getStandId,
userName: store.getters.getUserName,
timer: '',
labelPosition: 'top',
workFormRef: ref(),
workFormEntity: reactive({
workOrder: '',
productId: '',
singleProductId: '',
boxNo: '',
goodsId: '',
planStartDate: null
}),
workFormQuery: reactive({
workOrder: '',
productId: '',
singleProductId: '',
boxNo: '',
goodsId: '',
}),
rules: reactive({
workOrder: [
{ required: true, message: '请选择工单号。' }
]
}),
shortcuts: [
{
text: '今天',
value: new Date(),
},
{
text: '昨天',
value: () => {
const date = new Date()
date.setTime(date.getTime() - 3600 * 1000 * 24)
return date
},
},
],
optionLoading: false,
workOptions: {
workOrder: [],
productId: [],
singleProductId: [],
boxNo: [],
goodsId: []
},
confirmRef: ref(),
confirmEntity: reactive({}),
confirmRules: reactive({}),
boxShowFlag: false,
boxSummary: [],
pauseGetWorkFlag: true,
}
},
mounted() {
this.initWorkOptions()
this.timer = setInterval(() => {
this.getWork()
}, 1000)
},
beforeUnmount() {
clearInterval(this.timer)
},
methods: {
// options
initWorkOptions() {
const request = {
workOrder: this.workFormQuery.workOrder != '' ? this.workFormQuery.workOrder : this.workFormEntity.workOrder,
productId: this.workFormQuery.productId != '' ? this.workFormQuery.productId : this.workFormEntity.productId,
singleProductId: this.workFormQuery.singleProductId != '' ? this.workFormQuery.singleProductId : this.workFormEntity.singleProductId,
boxNo: this.workFormQuery.boxNo != '' ? this.workFormQuery.boxNo : this.workFormEntity.boxNo,
goodsId: this.workFormQuery.goodsId != '' ? this.workFormQuery.goodsId : this.workFormEntity.goodsId,
planStartDate: dateFormatter(this.workFormEntity.planStartDate)
}
this.optionLoading = true
queryKateWorks(request).then(res => {
const response = res.data
if (response.code == 0) {
this.workOptions = response.data
} else {
this.workOptions = {
workOrder: [],
productId: [],
singleProductId: [],
boxNo: [],
goodsId: []
}
}
}).catch(err => {
console.log(err)
errorBox('查询选项错误。')
}).finally(() => {
this.optionLoading = false
})
},
//
resetWorkFormQuery() {
const planStartDate = this.workFormEntity.planStartDate
this.workFormEntity = reactive({
workOrder: '',
productId: '',
singleProductId: '',
boxNo: '',
goodsId: '',
planStartDate: planStartDate
})
},
//
confirmStart() {
const request = {
workOrder: this.workFormEntity.workOrder,
productId: this.workFormEntity.productId,
singleProductId: this.workFormEntity.singleProductId,
boxNo: this.workFormEntity.boxNo,
goodsId: this.workFormEntity.goodsId,
planStartDate: dateFormatter(this.workFormEntity.planStartDate),
standId: 'P1',
userName: this.userName
}
loading.open()
initWorks(request).then(res => {
const response = res.data
if (response.code == 0) {
ElMessage.success(response.message)
} else {
errorBox(response.message)
}
}).catch(err => {
console.log(err)
errorBox('请求错误。')
}).finally(() => {
loading.close()
})
},
//
showBoxSummary() {
this.boxShowFlag = true
},
getWork() {
if (this.pauseGetWorkFlag) {
return
}
const request = {
standId: this.standId,
userName: this.userName
}
getCurrentWorks(request).then(res => {
const response = res.data
if (response.code == 0) {
// form
this.confirmEntity = {
workOrder: response.data.orderConfirmVo.workOrder,
productId: response.data.orderConfirmVo.productId,
singleProductId: response.data.orderConfirmVo.singleProductId,
boxNo: response.data.orderConfirmVo.boxNo,
goodsId: response.data.orderConfirmVo.goodsId,
planPickQty: response.data.orderConfirmVo.planPickQty,
realPickQty: response.data.orderConfirmVo.realPickQty,
stockId: response.data.stockConfirmVo.stockId,
vehicleId: response.data.stockConfirmVo.vehicleId,
goodsId: response.data.stockConfirmVo.goodsId,
planRemainQty: response.data.stockConfirmVo.planRemainQty,
realRemainQty: response.data.stockConfirmVo.realRemainQty,
isOut: response.data.stockConfirmVo.isOut,
putArea: response.data.stockConfirmVo.putArea,
}
this.pauseGetWorkFlag = true
} else if (response.code == 400) {
//
this.pauseGetWorkFlag = true
warningBox(response.message)
}
}).catch(err => {
console.log(err)
this.pauseGetWorkFlag = true
errorBox('请求错误,请检查完原因后刷新界面。')
})
},
confirmOrRelease() {
const request = {
orderConfirm: {
workOrder: this.confirmEntity.workOrder,
productId: this.confirmEntity.productId,
singleProductId: this.confirmEntity.singleProductId,
boxNo: this.confirmEntity.boxNo,
goodsId: this.confirmEntity.goodsId,
planPickQty: this.confirmEntity.planPickQty,
realPickQty: this.confirmEntity.realPickQty,
},
stockConfirm: {
stockId: this.confirmEntity.stockId,
vehicleId: this.confirmEntity.vehicleId,
goodsId: this.confirmEntity.goodsId,
planRemainQty: this.confirmEntity.planRemainQty,
realRemainQty: this.confirmEntity.realRemainQty,
isOut: this.confirmEntity.isOut,
putArea: this.confirmEntity.putArea,
},
standId: this.standId,
userName: this.userName
}
confirmCurrentWork(request).then(res => {
const response = res.data
if (response.code == 0) {
// form
this.confirmEntity = reactive({})
this.pauseGetWorkFlag = false
ElMessage.success(response.message)
} else {
//
errorBox(response.message)
}
}).catch(err => {
console.log(err)
errorBox('请求错误,请检查完原因后刷新界面。')
})
}
}
}
</script>
<style scoped>
.content {
display: flex;
width: 100%;
}
.work-area {
width: 100%;
/* padding: 5px; */
}
.main-area {
margin: auto;
min-height: fit-content;
max-height: 90%;
margin-bottom: 10px;
min-width: inherit;
border: solid 1px;
border-radius: 10px;
box-shadow: 0px 15px 10px -15px #000;
overflow: auto;
padding: 10px;
}
.confirm-area {
margin: auto;
min-height: fit-content;
max-height: 90%;
margin-bottom: 10px;
min-width: inherit;
border: solid 1px;
border-radius: 10px;
box-shadow: 0px 15px 10px -15px #000;
overflow: auto;
padding: 10px;
}
.title-area {
display: flex;
/* min-height: 10%; */
max-height: max-content;
margin-bottom: 10px;
min-width: inherit;
border: solid 1px;
border-radius: 10px;
box-shadow: 0px 15px 10px -15px #000;
overflow: auto;
}
.el-form-item {
margin: 10px 5px 10px 5px;
}
.el-form-item .el-input {
width: 196px;
}
.table-class {
margin: 5px 5px 5px 5px;
width: inherit;
}
</style>

View File

@ -24,12 +24,12 @@
<el-input v-model="searchQueryFormEntity.singleProductId" @keyup.enter="search()" clearable/>
</el-form-item>
<el-form-item label="工作状态">
<el-select-v2 v-model="searchQueryFormEntity.workStatus" placeholder="工作状态"
<el-select-v2 style="width: 196px" v-model="searchQueryFormEntity.workStatus" placeholder="工作状态"
:options="addAllOptionOfOptions(workStatusOptions)"
@change="search()"></el-select-v2>
</el-form-item>
<el-form-item label="缺料状态">
<el-select-v2 v-model="searchQueryFormEntity.lackStatus" placeholder="缺料状态"
<el-select-v2 style="width: 196px" v-model="searchQueryFormEntity.lackStatus" placeholder="缺料状态"
:options="addAllOptionOfOptions(lackStatusOptions)"
@change="search()"></el-select-v2>
</el-form-item>
@ -297,7 +297,7 @@ const USER_NAME = store.getters.getUserName
/**
* 变量定义
*/
let maxHeight = ref(window.innerHeight * 0.55)
let maxHeight = ref(window.innerHeight * 0.48)
let tableLoading = ref(false)
let tableData = ref([])
let baseTableQuery = reactive({

View File

@ -0,0 +1,45 @@
package com.wms_main.excel.easypoi.excelTemplate;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 物料需求excel模版
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class GoodsRequireExcelTemplate {
/**
* 料号
*/
private String goodsId;
/**
* 描述
*/
private String goodsDesc;
/**
* 需求数量
*/
private Integer needQty;
/**
* 库存数量
*/
private Integer stockQty;
/**
* 缺少数量
*/
private Integer lackQty;
/**
* 物料类型
* 1: 看板 2: MRP
*/
private String goodsType;
/**
* 库存类型
* 1: 库内料 2库外料
*/
private String stockType;
}

View File

@ -1,12 +1,9 @@
package com.wms_main.excel.easypoi.excelTemplate;
import cn.afterturn.easypoi.excel.annotation.Excel;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDate;
import java.time.LocalDateTime;

View File

@ -31,6 +31,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import java.io.IOException;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;
@ -71,11 +72,11 @@ public class BaseExportExcelEasyPoi implements IBaseExportExcelEasyPoi {
.eq(stockQuery.getStockStatus() != null, TAppStock::getStockStatus, stockQuery.getStockStatus())
.eq(stockQuery.getGoodsStatus() != null, TAppStock::getGoodsStatus, stockQuery.getGoodsStatus());
if (stockQuery.getFromDate() != null) {
lambdaQueryWrapper.ge(TAppStock::getFirstInTime, stockQuery.getFromDate().atStartOfDay());
lambdaQueryWrapper.ge(TAppStock::getFirstInTime, LocalDateTime.of(stockQuery.getFromDate(), LocalDateTime.MIN.toLocalTime()));
}
if (stockQuery.getToDate() != null) {
// toDate + 1天的凌晨
lambdaQueryWrapper.lt(TAppStock::getFirstInTime, stockQuery.getToDate().plusDays(1).atStartOfDay());
lambdaQueryWrapper.le(TAppStock::getFirstInTime, LocalDateTime.of(stockQuery.getToDate(), LocalDateTime.MAX.toLocalTime()));
}
List<TAppStock> stockList = appStockService.list(lambdaQueryWrapper);
// excel模版列表

View File

@ -46,15 +46,15 @@ public class StockQuery extends PageQuery{
/**
* 起始日期
*/
@JsonProperty("起始日期")
@JsonProperty("fromDate")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd")
private LocalDate fromDate;
/**
* 结束日期
*/
@JsonProperty("toDate")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd")
@JsonProperty("结束日期")
private LocalDate toDate;
}

View File

@ -0,0 +1,19 @@
package com.wms_main.model.dto.request.wms;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import java.util.List;
/**
* 获取物料需求 请求类
*/
@EqualsAndHashCode(callSuper = true)
@Data
@AllArgsConstructor
@NoArgsConstructor
public class GoodsRequireRequest extends BaseWmsRequest {
private List<String> orderIds;
}

View File

@ -0,0 +1,50 @@
package com.wms_main.model.vo.wms;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 物料需求Vo
*/
@Data
@AllArgsConstructor
@NoArgsConstructor
public class GoodsRequireVo {
/**
* 料号
*/
@JsonProperty("goodsId")
private String goodsId;
/**
* 描述
*/
@JsonProperty("goodsDesc")
private String goodsDesc;
/**
* 需求数量
*/
@JsonProperty("needQty")
private Integer needQty;
/**
* 库存数量
*/
@JsonProperty("stockQty")
private Integer stockQty;
/**
* 缺少数量
*/
@JsonProperty("lackQty")
private Integer lackQty;
/**
* 物料类型
*/
@JsonProperty("goodsType")
private Integer goodsType;
/**
* 库存类型
*/
@JsonProperty("stockType")
private Integer stockType;
}

View File

@ -144,8 +144,9 @@ public class StackerTaskServiceImpl implements IStackerTaskService {
}
}
return filterResult;
}).sorted(Comparator.comparingInt(TAppLocation::getLDepth).reversed())
})
.sorted(Comparator.comparingInt(location -> location.getLCol() + location.getLLayer()))
.sorted(Comparator.comparingInt(TAppLocation::getLDepth).reversed())
.toList();
// 判断是否输入了subArea
if (locationFilter != null && StringUtils.isNotEmpty(locationFilter.getSubArea())) {

View File

@ -69,6 +69,13 @@ public interface IKateWorkControllerService {
*/
BaseWmsApiResponse genClcKanbanRequirement(GenKanbanRequirementRequest genRequest);
/**
* 获取物料需求
* @param goodsRequireRequest 请求参数
* @return 请求结果
*/
BaseWmsApiResponse getGoodsRequirement(GoodsRequireRequest goodsRequireRequest);
/**
* 查询图纸
* @param imageQuery 查询参数

View File

@ -795,6 +795,20 @@ public class KateWorkControllerServiceImpl implements IKateWorkControllerService
return BaseWmsApiResponse.success("生成看板需求成功。");
}
/**
* 获取物料需求
* @param goodsRequireRequest 请求参数
* @return 响应结果
*/
@Override
public BaseWmsApiResponse getGoodsRequirement(GoodsRequireRequest goodsRequireRequest) {
// 判断工单列表是否为空
if (goodsRequireRequest == null) {
re
}
return null;
}
/**
* 查询图纸---实现
*

View File

@ -17,6 +17,8 @@ import com.wms_main.service.controller.IStockControllerService;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
import java.time.LocalDateTime;
/**
* 库存控制类 服务实现
*/
@ -45,11 +47,11 @@ public class StockControllerServiceImpl implements IStockControllerService {
.eq(stockQuery.getStockStatus() != null, TAppStock::getStockStatus, stockQuery.getStockStatus())
.eq(stockQuery.getGoodsStatus() != null, TAppStock::getGoodsStatus, stockQuery.getGoodsStatus());
if (stockQuery.getFromDate() != null) {
lambdaQueryWrapper.ge(TAppStock::getFirstInTime, stockQuery.getFromDate().atStartOfDay());
lambdaQueryWrapper.ge(TAppStock::getFirstInTime, LocalDateTime.of(stockQuery.getFromDate(), LocalDateTime.MIN.toLocalTime()));
}
if (stockQuery.getToDate() != null) {
// toDate + 1天的凌晨
lambdaQueryWrapper.lt(TAppStock::getFirstInTime, stockQuery.getToDate().plusDays(1).atStartOfDay());
lambdaQueryWrapper.le(TAppStock::getFirstInTime, LocalDateTime.of(stockQuery.getToDate(), LocalDateTime.MAX.toLocalTime()));
}
Page<TAppStock> stockPage = appStockService.page(page, lambdaQueryWrapper);

View File

@ -5,13 +5,13 @@
Source Server Type : MySQL
Source Server Version : 80404 (8.4.4)
Source Host : localhost:3306
Source Schema : wms_kate_wuxi_test
Source Schema : wms_kate_wuxi
Target Server Type : MySQL
Target Server Version : 80404 (8.4.4)
File Encoding : 65001
Date: 11/04/2025 11:03:02
Date: 23/04/2025 16:29:31
*/
SET NAMES utf8mb4;
@ -89,7 +89,6 @@ INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_i
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 ('1742539653431010010', '110002189126', '6457847-A', '6457847', '2025-03-28', '2025-03-29', '2025-03-29', '2025-03-31', 5, '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);
@ -138,7 +137,6 @@ INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_i
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 ('1743059809694010059', '110002188911', '6063779-N', '6063779', '2025-03-31', '2025-04-01', '2025-04-01', '2025-04-02', 30, '1#&4#&5#组装配', '早班', 'TRS', '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 ('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);
@ -3849,6 +3847,61 @@ INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `im
INSERT INTO `t_app_image` (`image_id`, `product_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
-- ----------------------------
@ -3868,12 +3921,12 @@ CREATE TABLE `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, 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, 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;
-- ----------------------------
@ -4951,7 +5004,7 @@ INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lo
INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `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, 1, 0, 1, 1, 2, 23, 9, 1, 'ASRS-0326', 1, '');
INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `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, '');
@ -6216,6 +6269,7 @@ CREATE TABLE `t_app_outs` (
-- 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;
-- ----------------------------
@ -6349,6 +6403,7 @@ CREATE TABLE `t_app_pick_task` (
-- 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;
-- ----------------------------
@ -7230,7 +7285,7 @@ CREATE TABLE `t_app_product` (
`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 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 '套数',
@ -17635,7 +17690,7 @@ CREATE TABLE `t_app_single_product` (
`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 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 '套数',
@ -17688,7 +17743,7 @@ CREATE TABLE `t_app_stand` (
-- 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, '10.90.80.53', '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 ('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');
@ -17745,6 +17800,8 @@ CREATE TABLE `t_app_stock` (
`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;
@ -17752,180 +17809,180 @@ CREATE TABLE `t_app_stock` (
-- 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`) VALUES ('1742534689406010000', 'ASRS-0326', 'A02-23-09', 1, '7X0448', 0, '2025-03-21 13:23:03', 'clc', '2025-03-21 13:24:49', 'clc', 320, 320, 320, 'NUT-HEX', 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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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`) 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);
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;
-- ----------------------------
@ -18796,6 +18853,8 @@ INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_
INSERT 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;
-- ----------------------------
@ -18828,6 +18887,7 @@ CREATE TABLE `t_app_task` (
-- 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;
-- ----------------------------
@ -20014,6 +20074,8 @@ INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_prior
INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `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', '');
@ -21159,7 +21221,7 @@ INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicl
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, 'A02-23-09', '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-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');
@ -21516,7 +21578,7 @@ INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicl
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, 2, '', 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-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');
@ -25725,19 +25787,21 @@ INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent
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-1', '库存信息', '', '/stock', '3');
INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-10', '盘点记录', '', '/inventoryRecord', '3');
INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-11', '拣选任务', '', '/pickTask', '3');
INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-2', '库存更新记录', '', '/stockUpdateRecord', '3');
INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-3', '物料信息', '', '/goods', '3');
INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-4', '料箱监控', '', '/vehicles', '3');
INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-5', '站台监控', '', '/standSettings', '3');
INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-6', '库位监控', '', '/location', '3');
INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-7', '任务监控', '', '/taskMonitor', '3');
INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-8', '入库记录', '', '/inTaskRecord', '3');
INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-9', '出库记录', '', '/outTaskRecord', '3');
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');