Compare commits
9 Commits
6aa1d581e7
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 2099a01bc1 | |||
| d5c1c1485c | |||
| 2aa0ae83c2 | |||
| 774fe86941 | |||
|
|
d02ef34751 | ||
|
|
2e7a50bf64 | ||
|
|
3ae6403bd3 | ||
|
|
855dbbe099 | ||
| f41a17c885 |
@@ -70,7 +70,7 @@ spring:
|
||||
# 国际化资源文件路径
|
||||
basename: i18n/messages
|
||||
profiles:
|
||||
active: prod
|
||||
active: @profiles.active@
|
||||
# 文件上传
|
||||
servlet:
|
||||
multipart:
|
||||
|
||||
@@ -32,6 +32,10 @@ public class MatMaterial extends BaseEntity {
|
||||
* 配料名称
|
||||
*/
|
||||
private String materialName;
|
||||
/**
|
||||
* 物料类型:1=辅料,2=原料
|
||||
*/
|
||||
private Integer materialType;
|
||||
/**
|
||||
* 配料规格
|
||||
*/
|
||||
|
||||
@@ -54,4 +54,9 @@ public class MatProduct extends BaseEntity {
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 产品图片,多个图片以逗号分隔
|
||||
*/
|
||||
private String productImages;
|
||||
|
||||
}
|
||||
|
||||
@@ -32,6 +32,11 @@ public class MatMaterialBo extends BaseEntity {
|
||||
*/
|
||||
private String materialName;
|
||||
|
||||
/**
|
||||
* 物料类型:1=辅料,2=原料
|
||||
*/
|
||||
private Integer materialType;
|
||||
|
||||
/**
|
||||
* 配料规格
|
||||
*/
|
||||
|
||||
@@ -52,5 +52,10 @@ public class MatProductBo extends BaseEntity {
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 产品图片,多个图片以逗号分隔
|
||||
*/
|
||||
private String productImages;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -34,6 +34,12 @@ public class MatMaterialVo {
|
||||
@ExcelProperty(value = "配料名称")
|
||||
private String materialName;
|
||||
|
||||
/**
|
||||
* 物料类型:1=辅料,2=原料
|
||||
*/
|
||||
@ExcelProperty(value = "物料类型")
|
||||
private Integer materialType;
|
||||
|
||||
/**
|
||||
* 配料规格
|
||||
*/
|
||||
|
||||
@@ -58,5 +58,11 @@ public class MatProductVo {
|
||||
@ExcelProperty(value = "备注")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 产品图片,多个图片以逗号分隔
|
||||
*/
|
||||
@ExcelProperty(value = "产品图片")
|
||||
private String productImages;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -57,6 +57,12 @@ public class MatProductWithMaterialsVo {
|
||||
@ExcelProperty(value = "备注")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 产品图片,多个图片以逗号分隔
|
||||
*/
|
||||
@ExcelProperty(value = "产品图片")
|
||||
private String productImages;
|
||||
|
||||
/**
|
||||
* 关联的配料信息列表
|
||||
*/
|
||||
@@ -81,4 +87,4 @@ public class MatProductWithMaterialsVo {
|
||||
private BigDecimal planNum; // 计划采购总数量
|
||||
private BigDecimal receivedNum; // 已入库数量
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -75,6 +75,7 @@ public class MatMaterialServiceImpl implements IMatMaterialService {
|
||||
Map<String, Object> params = bo.getParams();
|
||||
LambdaQueryWrapper<MatMaterial> lqw = Wrappers.lambdaQuery();
|
||||
lqw.like(StringUtils.isNotBlank(bo.getMaterialName()), MatMaterial::getMaterialName, bo.getMaterialName());
|
||||
lqw.eq(bo.getMaterialType() != null, MatMaterial::getMaterialType, bo.getMaterialType());
|
||||
lqw.eq(StringUtils.isNotBlank(bo.getSpec()), MatMaterial::getSpec, bo.getSpec());
|
||||
lqw.eq(StringUtils.isNotBlank(bo.getModel()), MatMaterial::getModel, bo.getModel());
|
||||
lqw.eq(StringUtils.isNotBlank(bo.getFactory()), MatMaterial::getFactory, bo.getFactory());
|
||||
|
||||
@@ -112,6 +112,7 @@ public class MatProductServiceImpl implements IMatProductService {
|
||||
productWithMaterialsVo.setModel(productVo.getModel());
|
||||
productWithMaterialsVo.setUnitPrice(productVo.getUnitPrice());
|
||||
productWithMaterialsVo.setRemark(productVo.getRemark());
|
||||
// productWithMaterialsVo.setProductImages(productVo.getProductImages());
|
||||
|
||||
// 查询并设置关联的配料信息
|
||||
List<MatProductMaterialRelationVo> relations = productMaterialRelationService.queryList(
|
||||
|
||||
@@ -7,6 +7,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<resultMap type="com.gear.mat.domain.MatMaterial" id="MatMaterialResult">
|
||||
<result property="materialId" column="material_id"/>
|
||||
<result property="materialName" column="material_name"/>
|
||||
<result property="materialType" column="material_type"/>
|
||||
<result property="spec" column="spec"/>
|
||||
<result property="model" column="model"/>
|
||||
<result property="factory" column="factory"/>
|
||||
|
||||
@@ -16,6 +16,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<result property="updateTime" column="update_time"/>
|
||||
<result property="updateBy" column="update_by"/>
|
||||
<result property="remark" column="remark"/>
|
||||
<!-- <result property="productImages" column="product_images"/>-->
|
||||
</resultMap>
|
||||
|
||||
|
||||
|
||||
@@ -12,6 +12,7 @@ import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 工资录入明细业务对象 gear_wage_entry_detail
|
||||
@@ -71,4 +72,6 @@ public class GearWageEntryDetailBo extends BaseEntity {
|
||||
private String makeupReason;
|
||||
|
||||
private String remark;
|
||||
// 新增累计金额
|
||||
private Map<String, BigDecimal> cumulativeAmounts;
|
||||
}
|
||||
|
||||
@@ -77,4 +77,6 @@ public class GearWageEntryDetailVo {
|
||||
|
||||
@ExcelProperty(value = "备注")
|
||||
private String remark;
|
||||
@ExcelProperty(value = "累计金额")
|
||||
private BigDecimal cumulativeAmount;
|
||||
}
|
||||
|
||||
@@ -49,11 +49,24 @@ public class GearWageEntryDetailServiceImpl implements IGearWageEntryDetailServi
|
||||
return TableDataInfo.build(result);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<GearWageEntryDetailVo> queryList(GearWageEntryDetailBo bo) {
|
||||
LambdaQueryWrapper<GearWageEntryDetail> lqw = buildQueryWrapper(bo);
|
||||
return baseMapper.selectVoList(lqw);
|
||||
}
|
||||
// @Override
|
||||
// public List<GearWageEntryDetailVo> queryList(GearWageEntryDetailBo bo) {
|
||||
// LambdaQueryWrapper<GearWageEntryDetail> lqw = buildQueryWrapper(bo);
|
||||
// return baseMapper.selectVoList(lqw);
|
||||
//
|
||||
// }
|
||||
@Override
|
||||
public List<GearWageEntryDetailVo> queryList(GearWageEntryDetailBo bo) {
|
||||
// 将 selectList 改为 selectVoList
|
||||
List<GearWageEntryDetailVo> list = baseMapper.selectVoList(buildQueryWrapper(bo));
|
||||
// 处理累计金额
|
||||
if (bo.getCumulativeAmounts() != null) {
|
||||
for (GearWageEntryDetailVo vo : list) {
|
||||
vo.setCumulativeAmount(bo.getCumulativeAmounts().get(vo.getEmpName()));
|
||||
}
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
private LambdaQueryWrapper<GearWageEntryDetail> buildQueryWrapper(GearWageEntryDetailBo bo) {
|
||||
LambdaQueryWrapper<GearWageEntryDetail> lqw = Wrappers.lambdaQuery();
|
||||
|
||||
@@ -40,7 +40,8 @@
|
||||
"vue-cropper": "1.1.1",
|
||||
"vue-router": "4.5.1",
|
||||
"vue3-treeselect": "^0.1.10",
|
||||
"vuedraggable": "4.1.0"
|
||||
"vuedraggable": "4.1.0",
|
||||
"xlsx": "^0.18.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vitejs/plugin-vue": "5.2.4",
|
||||
|
||||
@@ -11,10 +11,32 @@
|
||||
</div>
|
||||
|
||||
<!-- 选择弹窗:表格+分页+底部按钮 -->
|
||||
<el-dialog title="选择配料" v-model="open" width="800px" destroy-on-close>
|
||||
<el-dialog title="选择配料" v-model="open" width="900px" destroy-on-close>
|
||||
<!-- 检索功能 -->
|
||||
<el-form :model="searchForm" :inline="true" class="mb-4">
|
||||
<el-form-item label="配料名称">
|
||||
<el-input v-model="searchForm.materialName" placeholder="请输入配料名称" clearable @keyup.enter="fetchMaterialList" />
|
||||
</el-form-item>
|
||||
<el-form-item label="物料类型">
|
||||
<el-select v-model="searchForm.materialType" placeholder="请选择物料类型" clearable @change="fetchMaterialList">
|
||||
<el-option label="主材" value="2" />
|
||||
<el-option label="辅料" value="1" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click="fetchMaterialList">搜索</el-button>
|
||||
<el-button @click="resetSearch">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-table :data="list" style="width: 100%" border stripe @row-click="handleRowSelect" highlight-current-row
|
||||
row-key="materialId" :current-row-key="materialId">
|
||||
<el-table-column prop="materialName" label="配料名称" min-width="120" align="center" />
|
||||
<el-table-column label="物料类型" width="100" align="center">
|
||||
<template #default="scope">
|
||||
{{ scope.row.materialType === 1 ? '辅料' : scope.row.materialType === 2 ? '主材' : '-' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="spec" label="配料规格" min-width="100" align="center" />
|
||||
<el-table-column prop="model" label="配料型号" min-width="100" align="center" />
|
||||
<el-table-column prop="factory" label="生产厂家" min-width="120" align="center" />
|
||||
@@ -64,6 +86,12 @@ const emit = defineEmits(['change']);
|
||||
const list = ref([]); // 物料列表
|
||||
const open = ref(false); // 弹窗显隐
|
||||
|
||||
// 搜索表单数据
|
||||
const searchForm = ref({
|
||||
materialName: '',
|
||||
materialType: ''
|
||||
});
|
||||
|
||||
// 分页响应式数据(核心新增)
|
||||
const pageNum = ref(1); // 当前页码
|
||||
const pageSize = ref(10); // 每页条数
|
||||
@@ -77,7 +105,15 @@ onMounted(async () => {
|
||||
// 加载物料列表(适配分页参数)
|
||||
async function fetchMaterialList() {
|
||||
try {
|
||||
const res = await listMaterial({ pageNum: pageNum.value, pageSize: pageSize.value });
|
||||
// 构建查询参数,包含分页和搜索条件
|
||||
const params = {
|
||||
pageNum: pageNum.value,
|
||||
pageSize: pageSize.value,
|
||||
materialName: searchForm.value.materialName,
|
||||
materialType: searchForm.value.materialType
|
||||
};
|
||||
|
||||
const res = await listMaterial(params);
|
||||
|
||||
list.value = res.rows;
|
||||
total.value = res.total; // 赋值总条数供分页使用
|
||||
@@ -95,6 +131,16 @@ async function fetchMaterialList() {
|
||||
}
|
||||
}
|
||||
|
||||
// 重置搜索
|
||||
function resetSearch() {
|
||||
searchForm.value = {
|
||||
materialName: '',
|
||||
materialType: ''
|
||||
};
|
||||
pageNum.value = 1;
|
||||
fetchMaterialList();
|
||||
}
|
||||
|
||||
// 表格行选择物料
|
||||
function handleRowSelect(row) {
|
||||
if (row.materialId === materialId.value) return;
|
||||
|
||||
@@ -70,20 +70,7 @@ export const constantRoutes = [
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/user',
|
||||
component: Layout,
|
||||
hidden: true,
|
||||
redirect: 'noredirect',
|
||||
children: [
|
||||
{
|
||||
path: 'profile/:activeTab?',
|
||||
component: () => import('@/views/system/user/profile/index'),
|
||||
name: 'Profile',
|
||||
meta: { title: '个人中心', icon: 'user' }
|
||||
}
|
||||
]
|
||||
}
|
||||
{ path: '/user', component: Layout, hidden: true, redirect: 'noredirect', children: [ { path: 'profile/:activeTab?', component: () => import('@/views/system/user/profile/index'), name: 'Profile', meta: { title: '个人中心', icon: 'user' } } ] }, { path: '/mat/product', component: Layout, hidden: true, children: [ { path: 'detail/:id(\\d+)', component: () => import('@/views/mat/product/detail'), name: 'ProductDetail', meta: { title: '产品详情', activeMenu: '/mat/product' } } ] }
|
||||
]
|
||||
|
||||
// 动态路由,基于用户权限动态去加载
|
||||
@@ -151,7 +138,7 @@ export const dynamicRoutes = [
|
||||
permissions: ['tool:gen:edit'],
|
||||
children: [
|
||||
{
|
||||
path: 'index/:tableId(\\d+)',
|
||||
path: 'index/:tableId(\d+)',
|
||||
component: () => import('@/views/tool/gen/editTable'),
|
||||
name: 'GenEdit',
|
||||
meta: { title: '修改生成配置', activeMenu: '/tool/gen' }
|
||||
|
||||
@@ -17,7 +17,7 @@ const service = axios.create({
|
||||
// axios中请求配置有baseURL选项,表示请求URL公共部分
|
||||
baseURL: import.meta.env.VITE_APP_BASE_API,
|
||||
// 超时
|
||||
timeout: 10000
|
||||
timeout: 30000
|
||||
})
|
||||
|
||||
// request拦截器
|
||||
|
||||
464
gear-ui3/src/views/mat/auxiliary/index.vue
Normal file
464
gear-ui3/src/views/mat/auxiliary/index.vue
Normal file
@@ -0,0 +1,464 @@
|
||||
<!-- 辅料管理 -->
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="辅料名称" prop="materialName">
|
||||
<el-input v-model="queryParams.materialName" placeholder="请输入辅料名称" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="辅料规格" prop="spec">
|
||||
<el-input v-model="queryParams.spec" placeholder="请输入辅料规格" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="辅料型号" prop="model">
|
||||
<el-input v-model="queryParams.model" placeholder="请输入辅料型号" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="厂家" prop="factory">
|
||||
<el-input v-model="queryParams.factory" placeholder="请输入厂家" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<!-- <el-form-item label="计量单位 个/公斤/米等" prop="unit">
|
||||
<el-input v-model="queryParams.unit" placeholder="请输入计量单位 个/公斤/米等" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="现存库存" prop="currentStock">
|
||||
<el-input v-model="queryParams.currentStock" placeholder="请输入现存库存" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item> -->
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button type="primary" plain icon="Plus" @click="handleAdd">新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate">修改</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete">删除</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="warning" plain icon="Download" @click="handleExport">导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
|
||||
<el-table v-loading="loading" :data="materialList" @selection-change="handleSelectionChange" @row-click="handleRowClick">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<!-- <el-table-column label="辅料ID 主键" align="center" prop="materialId" v-if="true" /> -->
|
||||
<el-table-column label="辅料名称" align="center" prop="materialName" />
|
||||
<el-table-column label="物料类型" align="center" prop="materialType">
|
||||
<template #default="scope">
|
||||
{{ scope.row.materialType === 1 ? '辅料' : '原料' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="辅料规格" align="center" prop="spec" />
|
||||
<el-table-column label="辅料型号" align="center" prop="model" />
|
||||
<el-table-column label="厂家" align="center" prop="factory" />
|
||||
<el-table-column label="计量单位" align="center" prop="unit" />
|
||||
<el-table-column label="现存库存" align="center" prop="currentStock">
|
||||
<template #default="scope">
|
||||
{{ formatDecimal(scope.row.currentStock) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="在途数量" align="center" prop="inTransitNum">
|
||||
<template #default="scope">
|
||||
{{ formatDecimal(scope.row.inTransitNum) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="备注" align="center" prop="remark" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-button link type="primary" icon="Plus" @click="handleIn(scope.row)">入库</el-button>
|
||||
<el-button link type="primary" icon="Minus" @click="handleOut(scope.row)">出库</el-button>
|
||||
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)">修改</el-button>
|
||||
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)">删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum"
|
||||
v-model:limit="queryParams.pageSize" @pagination="getList" />
|
||||
|
||||
<!-- 添加或修改辅料基础信息对话框 -->
|
||||
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
||||
<el-form ref="materialRef" :model="form" :rules="rules" label-width="80px">
|
||||
<el-form-item label="辅料名称" prop="materialName">
|
||||
<el-input v-model="form.materialName" placeholder="请输入辅料名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="物料类型" prop="materialType">
|
||||
<el-select v-model="form.materialType" placeholder="请选择物料类型" disabled>
|
||||
<el-option label="辅料" value="1" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="辅料规格" prop="spec">
|
||||
<el-input v-model="form.spec" placeholder="请输入辅料规格" />
|
||||
</el-form-item>
|
||||
<el-form-item label="辅料型号" prop="model">
|
||||
<el-input v-model="form.model" placeholder="请输入辅料型号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="厂家" prop="factory">
|
||||
<el-input v-model="form.factory" placeholder="请输入厂家" />
|
||||
</el-form-item>
|
||||
<el-form-item label="计量单位" prop="unit">
|
||||
<el-input v-model="form.unit" placeholder="请输入计量单位" />
|
||||
</el-form-item>
|
||||
<!-- <el-form-item label="现存库存" prop="currentStock">
|
||||
<el-input v-model="form.currentStock" placeholder="请输入现存库存" />
|
||||
</el-form-item> -->
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" placeholder="请输入备注" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-dialog>
|
||||
|
||||
<el-dialog title="入库" v-model="inOpen" width="500px" append-to-body>
|
||||
<el-form ref="materialInRef" :model="inForm" label-width="80px">
|
||||
<el-form-item label="辅料" prop="materialId">
|
||||
<raw-selector ref="rawSelector" v-model="inForm.materialId" placeholder="请选择辅料" />
|
||||
</el-form-item>
|
||||
<el-form-item label="入库数量" prop="inNum">
|
||||
<el-input v-model="inForm.inNum" placeholder="请输入入库数量" />
|
||||
</el-form-item>
|
||||
<el-form-item label="入库单价" prop="inPrice">
|
||||
<el-input v-model="inForm.inPrice" placeholder="请输入入库单价" />
|
||||
</el-form-item>
|
||||
<el-form-item label="入库时间" prop="inTime">
|
||||
<el-date-picker clearable v-model="inForm.inTime" type="datetime" value-format="YYYY-MM-DD HH:mm:ss"
|
||||
placeholder="请选择实际入库时间">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="操作人" prop="operator">
|
||||
<el-input v-model="inForm.operator" placeholder="请输入入库操作人" />
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="inForm.remark" placeholder="请输入备注" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button :loading="buttonLoading" type="primary" @click="submitFormIn">确 定</el-button>
|
||||
<el-button @click="cancelIn">取 消</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-dialog>
|
||||
|
||||
<el-dialog title="出库" v-model="outOpen" width="500px" append-to-body>
|
||||
<el-form ref="materialOutRef" :model="outForm" label-width="80px">
|
||||
<el-form-item label="出库单号" prop="outNo">
|
||||
<el-input v-model="outForm.outNo" placeholder="请输入出库单号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="辅料" prop="materialId">
|
||||
<raw-selector ref="rawSelector" v-model="outForm.materialId" placeholder="请选择辅料" />
|
||||
</el-form-item>
|
||||
<el-form-item label="出库数量" prop="outNum">
|
||||
<el-input v-model="outForm.outNum" placeholder="请输入出库数量" />
|
||||
</el-form-item>
|
||||
<el-form-item label="出库原因" prop="outReason">
|
||||
<el-input v-model="outForm.outReason" placeholder="请输入出库原因" />
|
||||
</el-form-item>
|
||||
<el-form-item label="操作人" prop="operator">
|
||||
<el-input v-model="outForm.operator" placeholder="请输入操作人" />
|
||||
</el-form-item>
|
||||
<el-form-item label="出库时间" prop="outTime">
|
||||
<el-date-picker clearable v-model="outForm.outTime" type="datetime" value-format="YYYY-MM-DD HH:mm:ss"
|
||||
placeholder="请选择实际出库时间">
|
||||
</el-date-picker>
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="outForm.remark" placeholder="请输入备注" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button :loading="buttonLoading" type="primary" @click="submitFormOut">确 定</el-button>
|
||||
<el-button @click="cancelOut">取 消</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-dialog>
|
||||
|
||||
|
||||
<Price :materialId="currentMaterialId" ref="priceRef" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup name="AuxiliaryMaterial">
|
||||
import { listMaterial, getMaterial, delMaterial, addMaterial, updateMaterial } from "@/api/mat/material";
|
||||
import { addPurchaseInDetail } from "@/api/mat/purchaseInDetail";
|
||||
import { addMaterialOut } from "@/api/mat/materialOut";
|
||||
import Price from "@/views/mat/components/price.vue";
|
||||
import RawSelector from "@/components/RawSelector/index.vue";
|
||||
import { formatDecimal } from '@/utils/gear'
|
||||
|
||||
import useUserStore from '@/store/modules/user'
|
||||
|
||||
const userStore = useUserStore()
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
|
||||
const materialList = ref([]);
|
||||
const open = ref(false);
|
||||
const buttonLoading = ref(false);
|
||||
const loading = ref(true);
|
||||
const showSearch = ref(true);
|
||||
const ids = ref([]);
|
||||
const single = ref(true);
|
||||
const multiple = ref(true);
|
||||
const total = ref(0);
|
||||
const title = ref("");
|
||||
|
||||
const inForm = ref({});
|
||||
const outForm = ref({});
|
||||
const inOpen = ref(false);
|
||||
const outOpen = ref(false);
|
||||
|
||||
const currentMaterialId = ref(null);
|
||||
|
||||
function handleRowClick(row) {
|
||||
currentMaterialId.value = row.materialId;
|
||||
}
|
||||
|
||||
const priceHistoryList = ref([]);
|
||||
|
||||
const nickName = computed(() => userStore.nickName)
|
||||
|
||||
|
||||
const formatterTime = (time) => {
|
||||
return proxy.parseTime(time, '{y}-{m}-{d}')
|
||||
}
|
||||
|
||||
const data = reactive({
|
||||
form: {},
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
materialName: undefined,
|
||||
spec: undefined,
|
||||
model: undefined,
|
||||
factory: undefined,
|
||||
unit: undefined,
|
||||
currentStock: undefined,
|
||||
materialType: 1, // 固定为辅料
|
||||
},
|
||||
rules: {
|
||||
}
|
||||
});
|
||||
|
||||
const { queryParams, form, rules } = toRefs(data);
|
||||
|
||||
/** 查询辅料基础信息列表 */
|
||||
function getList() {
|
||||
loading.value = true;
|
||||
listMaterial(queryParams.value).then(response => {
|
||||
materialList.value = response.rows;
|
||||
total.value = response.total;
|
||||
loading.value = false;
|
||||
});
|
||||
}
|
||||
|
||||
// 取消按钮
|
||||
function cancel() {
|
||||
open.value = false;
|
||||
reset();
|
||||
}
|
||||
|
||||
// 表单重置
|
||||
function reset() {
|
||||
form.value = {
|
||||
materialId: null,
|
||||
materialName: null,
|
||||
materialType: 1, // 固定为辅料
|
||||
spec: null,
|
||||
model: null,
|
||||
factory: null,
|
||||
unit: null,
|
||||
currentStock: null,
|
||||
delFlag: null,
|
||||
createTime: null,
|
||||
createBy: null,
|
||||
updateTime: null,
|
||||
updateBy: null,
|
||||
remark: null
|
||||
};
|
||||
proxy.resetForm("materialRef");
|
||||
}
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
function handleQuery() {
|
||||
queryParams.value.pageNum = 1;
|
||||
getList();
|
||||
}
|
||||
|
||||
/** 重置按钮操作 */
|
||||
function resetQuery() {
|
||||
proxy.resetForm("queryRef");
|
||||
queryParams.value.materialType = 1; // 重置后仍为辅料
|
||||
handleQuery();
|
||||
}
|
||||
|
||||
// 多选框选中数据
|
||||
function handleSelectionChange(selection) {
|
||||
ids.value = selection.map(item => item.materialId);
|
||||
single.value = selection.length != 1;
|
||||
multiple.value = !selection.length;
|
||||
}
|
||||
|
||||
/** 新增按钮操作 */
|
||||
function handleAdd() {
|
||||
reset();
|
||||
open.value = true;
|
||||
title.value = "添加辅料基础信息";
|
||||
}
|
||||
|
||||
/** 修改按钮操作 */
|
||||
function handleUpdate(row) {
|
||||
loading.value = true
|
||||
reset();
|
||||
const _materialId = row.materialId || ids.value
|
||||
getMaterial(_materialId).then(response => {
|
||||
loading.value = false;
|
||||
form.value = response.data;
|
||||
open.value = true;
|
||||
title.value = "修改辅料基础信息";
|
||||
});
|
||||
}
|
||||
|
||||
/** 提交按钮 */
|
||||
function submitForm() {
|
||||
proxy.$refs["materialRef"].validate(valid => {
|
||||
if (valid) {
|
||||
buttonLoading.value = true;
|
||||
if (form.value.materialId != null) {
|
||||
updateMaterial(form.value).then(response => {
|
||||
proxy.$modal.msgSuccess("修改成功");
|
||||
open.value = false;
|
||||
getList();
|
||||
}).finally(() => {
|
||||
buttonLoading.value = false;
|
||||
});
|
||||
} else {
|
||||
addMaterial(form.value).then(response => {
|
||||
proxy.$modal.msgSuccess("新增成功");
|
||||
open.value = false;
|
||||
getList();
|
||||
}).finally(() => {
|
||||
buttonLoading.value = false;
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/** 删除按钮操作 */
|
||||
function handleDelete(row) {
|
||||
const _materialIds = row.materialId || ids.value;
|
||||
proxy.$modal.confirm('是否确认删除辅料基础信息编号为"' + _materialIds + '"的数据项?').then(function () {
|
||||
loading.value = true;
|
||||
return delMaterial(_materialIds);
|
||||
}).then(() => {
|
||||
loading.value = true;
|
||||
getList();
|
||||
proxy.$modal.msgSuccess("删除成功");
|
||||
}).catch(() => {
|
||||
}).finally(() => {
|
||||
loading.value = false;
|
||||
});
|
||||
}
|
||||
|
||||
/** 导出按钮操作 */
|
||||
function handleExport() {
|
||||
proxy.download('mat/material/export', {
|
||||
...queryParams.value
|
||||
}, `auxiliary_material_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
|
||||
function handleIn(row) {
|
||||
const inTime = proxy.parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}')
|
||||
inOpen.value = true;
|
||||
|
||||
inForm.value = {
|
||||
detailId: null,
|
||||
purchaseId: null,
|
||||
materialId: row.materialId,
|
||||
inNum: null,
|
||||
inPrice: null,
|
||||
inAmount: null,
|
||||
inTime: inTime,
|
||||
operator: nickName,
|
||||
delFlag: null,
|
||||
createTime: null,
|
||||
createBy: null,
|
||||
updateTime: null,
|
||||
updateBy: null,
|
||||
remark: null
|
||||
};
|
||||
proxy.resetForm("materialInRef");
|
||||
}
|
||||
|
||||
function cancelIn() {
|
||||
inOpen.value = false;
|
||||
}
|
||||
|
||||
const priceRef = ref(null);
|
||||
|
||||
function submitFormIn() {
|
||||
loading.value = true;
|
||||
buttonLoading.value = true;
|
||||
addPurchaseInDetail(inForm.value).then(response => {
|
||||
proxy.$modal.msgSuccess("新增成功");
|
||||
inOpen.value = false;
|
||||
getList();
|
||||
priceRef.value.getListChart();
|
||||
}).finally(() => {
|
||||
buttonLoading.value = false;
|
||||
loading.value = false;
|
||||
});
|
||||
}
|
||||
|
||||
function handleOut(row) {
|
||||
const outNo = proxy.parseTime(new Date(), '{y}{m}{d}{hh}{i}{s}')
|
||||
const outTime = proxy.parseTime(new Date(), '{y}-{m}-{d} {h}:{i}:{s}')
|
||||
outOpen.value = true;
|
||||
|
||||
outForm.value = {
|
||||
outId: null,
|
||||
outNo: outNo,
|
||||
materialId: row.materialId,
|
||||
outNum: null,
|
||||
outReason: null,
|
||||
operator: nickName,
|
||||
outTime: outTime,
|
||||
delFlag: null,
|
||||
createTime: null,
|
||||
createBy: null,
|
||||
updateTime: null,
|
||||
updateBy: null,
|
||||
remark: null
|
||||
};
|
||||
proxy.resetForm("materialOutRef");
|
||||
}
|
||||
|
||||
function cancelOut() {
|
||||
outOpen.value = false;
|
||||
}
|
||||
|
||||
function submitFormOut() {
|
||||
loading.value = true;
|
||||
buttonLoading.value = true;
|
||||
addMaterialOut(outForm.value).then(response => {
|
||||
proxy.$modal.msgSuccess("新增成功");
|
||||
outOpen.value = false;
|
||||
getList();
|
||||
}).finally(() => {
|
||||
buttonLoading.value = false;
|
||||
loading.value = false;
|
||||
});
|
||||
}
|
||||
|
||||
getList();
|
||||
</script>
|
||||
@@ -25,6 +25,11 @@
|
||||
<raw :data="scope.row" :materialId="scope.row.materialId" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="物料类型" width="100" align="center">
|
||||
<template #default="scope">
|
||||
{{ scope.row.material?.materialType === 1 ? '辅料' : scope.row.material?.materialType === 2 ? '主材' : '-' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="所需数量" align="center" prop="materialNum">
|
||||
<template #default="scope">
|
||||
{{ formatDecimal(scope.row.materialNum) }}
|
||||
@@ -75,6 +80,7 @@
|
||||
|
||||
<script setup name="ProductMaterialRelation">
|
||||
import { listProductMaterialRelation, getProductMaterialRelation, delProductMaterialRelation, addProductMaterialRelation, updateProductMaterialRelation } from "@/api/mat/productMaterialRelation";
|
||||
import { getMaterial } from "@/api/mat/material";
|
||||
import RawSelector from '@/components/RawSelector/index.vue'
|
||||
import Raw from '@/components/Renderer/Raw.vue'
|
||||
import { formatDecimal } from '@/utils/gear'
|
||||
@@ -128,8 +134,21 @@ watch(() => props.productId, (newVal, oldVal) => {
|
||||
function getList() {
|
||||
loading.value = true;
|
||||
listProductMaterialRelation(queryParams.value).then(response => {
|
||||
productMaterialRelationList.value = response.rows;
|
||||
total.value = response.total;
|
||||
const relations = response.rows;
|
||||
// 为每个配方项获取物料详细信息,包括物料类型
|
||||
const promises = relations.map(item => {
|
||||
return getMaterial(item.materialId).then(materialResponse => {
|
||||
item.material = materialResponse.data;
|
||||
return item;
|
||||
});
|
||||
});
|
||||
return Promise.all(promises);
|
||||
}).then(relationsWithMaterial => {
|
||||
productMaterialRelationList.value = relationsWithMaterial;
|
||||
total.value = relationsWithMaterial.length;
|
||||
loading.value = false;
|
||||
}).catch(error => {
|
||||
console.error('获取数据失败:', error);
|
||||
loading.value = false;
|
||||
});
|
||||
}
|
||||
|
||||
360
gear-ui3/src/views/mat/product/detail.vue
Normal file
360
gear-ui3/src/views/mat/product/detail.vue
Normal file
@@ -0,0 +1,360 @@
|
||||
<template>
|
||||
<div class="app-container">
|
||||
<el-card class="mb20">
|
||||
<template #header>
|
||||
<div class="card-header">
|
||||
<span>{{ productDetail.productName }} - 产品详情</span>
|
||||
<el-button type="primary" plain size="small" @click="handleBack">返回列表</el-button>
|
||||
</div>
|
||||
</template>
|
||||
<div class="product-info">
|
||||
<div class="info-item">
|
||||
<span class="label">产品名称:</span>
|
||||
<span class="value">{{ productDetail.productName }}</span>
|
||||
</div>
|
||||
<div class="info-item">
|
||||
<span class="label">产品规格:</span>
|
||||
<span class="value">{{ productDetail.spec }}</span>
|
||||
</div>
|
||||
<div class="info-item">
|
||||
<span class="label">产品型号:</span>
|
||||
<span class="value">{{ productDetail.model }}</span>
|
||||
</div>
|
||||
<div class="info-item">
|
||||
<span class="label">产品单价:</span>
|
||||
<span class="value">{{ formatDecimal(productDetail.unitPrice) }} 元</span>
|
||||
</div>
|
||||
<div class="info-item">
|
||||
<span class="label">备注:</span>
|
||||
<span class="value">{{ productDetail.remark || '无' }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 产品附加属性 -->
|
||||
<div class="product-addition" v-if="productAdditionList.length > 0">
|
||||
<h4>产品附加属性</h4>
|
||||
<el-table :data="productAdditionList" style="width: 100%" border>
|
||||
<el-table-column prop="attrName" label="属性名" width="150" />
|
||||
<el-table-column prop="attrValue" label="属性值" />
|
||||
</el-table>
|
||||
</div>
|
||||
<div class="product-images" v-if="productDetail.productImages && productDetail.productImages.trim()">
|
||||
<h4>产品图片</h4>
|
||||
<div class="image-list">
|
||||
<el-image
|
||||
v-for="(image, index) in productDetail.productImages.split(',').filter(img => img.trim())"
|
||||
:key="index"
|
||||
:src="image"
|
||||
:preview-src-list="productDetail.productImages.split(',').filter(img => img.trim())"
|
||||
style="width: 100px; height: 100px; margin-right: 10px;"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</el-card>
|
||||
|
||||
<el-card>
|
||||
<template #header>
|
||||
<div class="card-header">
|
||||
<span>材料明细</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<!-- 主材部分 -->
|
||||
<div class="material-section">
|
||||
<h3 class="section-title">主材</h3>
|
||||
<el-table :data="mainMaterials" style="width: 100%" border>
|
||||
<el-table-column prop="materialName" label="配料名称" width="150" />
|
||||
<el-table-column prop="spec" label="材料规格" width="150" />
|
||||
<el-table-column prop="quantity" label="数量" width="100" align="center" />
|
||||
<el-table-column prop="price" label="价格" width="100" align="center">
|
||||
<template #default="scope">
|
||||
{{ formatDecimal(scope.row.price) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="subtotal" label="小计" width="100" align="center">
|
||||
<template #default="scope">
|
||||
{{ formatDecimal(scope.row.subtotal) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div class="section-summary" v-if="mainMaterials.length > 0">
|
||||
<span>主材小计:{{ formatDecimal(mainMaterials.reduce((sum, item) => sum + item.subtotal, 0)) }} 元</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 辅材部分 -->
|
||||
<div class="material-section">
|
||||
<h3 class="section-title">辅材</h3>
|
||||
<el-table :data="auxiliaryMaterials" style="width: 100%" border>
|
||||
<el-table-column prop="materialName" label="配料名称" width="150" />
|
||||
<el-table-column prop="spec" label="材料规格" width="150" />
|
||||
<el-table-column prop="quantity" label="数量" width="100" align="center" />
|
||||
<el-table-column prop="price" label="价格" width="100" align="center">
|
||||
<template #default="scope">
|
||||
{{ formatDecimal(scope.row.price) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="subtotal" label="小计" width="100" align="center">
|
||||
<template #default="scope">
|
||||
{{ formatDecimal(scope.row.subtotal) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div class="section-summary" v-if="auxiliaryMaterials.length > 0">
|
||||
<span>辅材小计:{{ formatDecimal(auxiliaryMaterials.reduce((sum, item) => sum + item.subtotal, 0)) }} 元</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 工本部分 -->
|
||||
<div class="material-section">
|
||||
<h3 class="section-title">工本</h3>
|
||||
<el-table :data="laborMaterials" style="width: 100%" border>
|
||||
<el-table-column prop="materialName" label="项目名称" width="150" />
|
||||
<el-table-column prop="spec" label="规格" width="150" />
|
||||
<el-table-column prop="quantity" label="数量" width="100" align="center" />
|
||||
<el-table-column prop="price" label="价格" width="100" align="center">
|
||||
<template #default="scope">
|
||||
{{ formatDecimal(scope.row.price) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="subtotal" label="小计" width="100" align="center">
|
||||
<template #default="scope">
|
||||
{{ formatDecimal(scope.row.subtotal) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div class="section-summary" v-if="laborMaterials.length > 0">
|
||||
<span>工本小计:{{ formatDecimal(laborMaterials.reduce((sum, item) => sum + item.subtotal, 0)) }} 元</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 总计部分 -->
|
||||
<div class="total-section">
|
||||
<div class="total-item">
|
||||
<span class="total-label">合计:</span>
|
||||
<span class="total-value">{{ formatDecimal(totalAmount) }} 元</span>
|
||||
</div>
|
||||
</div>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup name="ProductDetail">
|
||||
import { ref, computed, onMounted } from 'vue';
|
||||
import { useRouter, useRoute } from 'vue-router';
|
||||
import { getProduct } from "@/api/mat/product";
|
||||
import { listProductMaterialRelation } from "@/api/mat/productMaterialRelation";
|
||||
import { getMaterial } from "@/api/mat/material";
|
||||
import { listProductAddition } from "@/api/mat/productAddition";
|
||||
import { formatDecimal } from '@/utils/gear';
|
||||
|
||||
const router = useRouter();
|
||||
const route = useRoute();
|
||||
|
||||
const productDetail = ref({});
|
||||
const loading = ref(true);
|
||||
const materialLoading = ref(false);
|
||||
const additionLoading = ref(false);
|
||||
|
||||
// 材料明细数据
|
||||
const productMaterialRelationList = ref([]);
|
||||
|
||||
// 产品附加属性数据
|
||||
const productAdditionList = ref([]);
|
||||
|
||||
// 计算主材、辅材和工本
|
||||
const mainMaterials = computed(() => {
|
||||
// 主材(材料类型为2)
|
||||
return productMaterialRelationList.value
|
||||
.filter(item => item.material && item.material.materialType === 2)
|
||||
.map(item => ({
|
||||
materialName: item.material.materialName,
|
||||
spec: item.material.spec,
|
||||
quantity: item.materialNum + (item.material.unit || ''),
|
||||
price: item.material.unitPrice || 0,
|
||||
subtotal: (item.materialNum * (item.material.unitPrice || 0)) || 0
|
||||
}));
|
||||
});
|
||||
|
||||
const auxiliaryMaterials = computed(() => {
|
||||
// 辅材(材料类型为1)
|
||||
return productMaterialRelationList.value
|
||||
.filter(item => item.material && item.material.materialType === 1)
|
||||
.map(item => ({
|
||||
materialName: item.material.materialName,
|
||||
spec: item.material.spec,
|
||||
quantity: item.materialNum + (item.material.unit || ''),
|
||||
price: item.material.unitPrice || 0,
|
||||
subtotal: (item.materialNum * (item.material.unitPrice || 0)) || 0
|
||||
}));
|
||||
});
|
||||
|
||||
const laborMaterials = computed(() => {
|
||||
// 工本(材料类型为3)
|
||||
return productMaterialRelationList.value
|
||||
.filter(item => item.material && item.material.materialType === 3)
|
||||
.map(item => ({
|
||||
materialName: item.material.materialName,
|
||||
spec: item.material.spec,
|
||||
quantity: item.materialNum + (item.material.unit || ''),
|
||||
price: item.material.unitPrice || 0,
|
||||
subtotal: (item.materialNum * (item.material.unitPrice || 0)) || 0
|
||||
}));
|
||||
});
|
||||
|
||||
// 计算总金额
|
||||
const totalAmount = computed(() => {
|
||||
const mainTotal = mainMaterials.value.reduce((sum, item) => sum + item.subtotal, 0);
|
||||
const auxiliaryTotal = auxiliaryMaterials.value.reduce((sum, item) => sum + item.subtotal, 0);
|
||||
const laborTotal = laborMaterials.value.reduce((sum, item) => sum + item.subtotal, 0);
|
||||
return mainTotal + auxiliaryTotal + laborTotal;
|
||||
});
|
||||
|
||||
// 获取产品详情
|
||||
function getProductDetail() {
|
||||
const productId = route.params.id;
|
||||
if (productId) {
|
||||
loading.value = true;
|
||||
getProduct(productId).then(response => {
|
||||
productDetail.value = response.data;
|
||||
loading.value = false;
|
||||
// 获取材料明细
|
||||
getMaterialDetail(productId);
|
||||
// 获取产品附加属性
|
||||
getProductAddition(productId);
|
||||
}).catch(error => {
|
||||
console.error('获取产品详情失败:', error);
|
||||
loading.value = false;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// 获取产品附加属性
|
||||
function getProductAddition(productId) {
|
||||
additionLoading.value = true;
|
||||
listProductAddition({ productId }).then(response => {
|
||||
productAdditionList.value = response.rows || [];
|
||||
additionLoading.value = false;
|
||||
}).catch(error => {
|
||||
console.error('获取产品附加属性失败:', error);
|
||||
additionLoading.value = false;
|
||||
});
|
||||
}
|
||||
|
||||
// 获取材料明细
|
||||
function getMaterialDetail(productId) {
|
||||
materialLoading.value = true;
|
||||
listProductMaterialRelation({ productId }).then(response => {
|
||||
const relations = response.rows;
|
||||
// 为每个配方项获取物料详细信息,包括物料类型
|
||||
const promises = relations.map(item => {
|
||||
return getMaterial(item.materialId).then(materialResponse => {
|
||||
item.material = materialResponse.data;
|
||||
return item;
|
||||
});
|
||||
});
|
||||
return Promise.all(promises);
|
||||
}).then(relationsWithMaterial => {
|
||||
productMaterialRelationList.value = relationsWithMaterial;
|
||||
materialLoading.value = false;
|
||||
}).catch(error => {
|
||||
console.error('获取材料明细失败:', error);
|
||||
materialLoading.value = false;
|
||||
});
|
||||
}
|
||||
|
||||
// 返回列表
|
||||
function handleBack() {
|
||||
router.back();
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
getProductDetail();
|
||||
});
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.app-container {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.product-info {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 20px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.info-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.label {
|
||||
font-weight: bold;
|
||||
min-width: 80px;
|
||||
}
|
||||
|
||||
.product-images {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.image-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.material-section {
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
background-color: #f5f7fa;
|
||||
padding: 10px;
|
||||
border-left: 4px solid #409eff;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.section-summary {
|
||||
text-align: right;
|
||||
padding: 10px;
|
||||
background-color: #f9f9f9;
|
||||
border-top: 1px solid #e4e7ed;
|
||||
margin-top: -1px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.total-section {
|
||||
margin-top: 30px;
|
||||
padding: 20px;
|
||||
background-color: #f0f9eb;
|
||||
border: 1px solid #b7eb8f;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.total-item {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.total-label {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.total-value {
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
color: #f56c6c;
|
||||
}
|
||||
</style>
|
||||
@@ -45,10 +45,28 @@
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="备注" align="center" prop="remark" />
|
||||
<el-table-column label="产品图片" align="center" prop="productImages">
|
||||
<template #default="scope">
|
||||
<div v-if="scope.row.productImages && scope.row.productImages.trim()" class="image-preview">
|
||||
<el-image
|
||||
v-for="(image, index) in scope.row.productImages.split(',')"
|
||||
:key="index"
|
||||
:src="image"
|
||||
:preview-src-list="scope.row.productImages.split(',')"
|
||||
:z-index="9999"
|
||||
:preview-teleported="true"
|
||||
style="width: 40px; height: 40px; margin-right: 8px;"
|
||||
/>
|
||||
</div>
|
||||
<span v-else>无</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-button link type="primary" icon="Plus" @click="handleBom(scope.row)">配方</el-button>
|
||||
<el-button link type="primary" icon="View" @click="handleDetail(scope.row)">详情</el-button>
|
||||
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)">修改</el-button>
|
||||
<el-button link type="primary" icon="Setting" @click="handleAddition(scope.row)">附加属性</el-button>
|
||||
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)">删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
@@ -75,6 +93,26 @@
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" placeholder="请输入备注" />
|
||||
</el-form-item>
|
||||
<el-form-item label="产品图片" prop="productImages">
|
||||
<el-upload
|
||||
v-model:file-list="imageFileList"
|
||||
:action="uploadUrl"
|
||||
:headers="headers"
|
||||
:on-success="handleImageUploadSuccess"
|
||||
:on-remove="handleImageRemove"
|
||||
multiple
|
||||
list-type="picture"
|
||||
:limit="5"
|
||||
:before-upload="beforeUpload"
|
||||
>
|
||||
<el-button type="primary" icon="Upload">上传图片</el-button>
|
||||
<template #tip>
|
||||
<div class="el-upload__tip">
|
||||
最多上传5张图片,支持 JPG、PNG 格式
|
||||
</div>
|
||||
</template>
|
||||
</el-upload>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
@@ -88,6 +126,36 @@
|
||||
<bom :productId="currentProductId" @close="bomOpen = false" />
|
||||
</el-dialog>
|
||||
|
||||
<!-- 产品附加属性对话框 -->
|
||||
<el-dialog title="产品附加属性" v-model="additionOpen" width="600px" append-to-body>
|
||||
<div class="addition-container">
|
||||
<el-button type="primary" icon="Plus" @click="addAdditionItem" style="margin-bottom: 10px">添加属性</el-button>
|
||||
<el-table :data="additionList" style="width: 100%" border>
|
||||
<el-table-column prop="attrName" label="属性名" width="150">
|
||||
<template #default="scope">
|
||||
<el-input v-model="scope.row.attrName" placeholder="请输入属性名" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="attrValue" label="属性值">
|
||||
<template #default="scope">
|
||||
<el-input v-model="scope.row.attrValue" placeholder="请输入属性值" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" width="100" align="center">
|
||||
<template #default="scope">
|
||||
<el-button link type="danger" icon="Delete" @click="removeAdditionItem(scope.$index)" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button type="primary" @click="saveAdditions">保存</el-button>
|
||||
<el-button @click="additionOpen = false">取消</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-dialog>
|
||||
|
||||
<!-- 将这个表格改为始终吸底,且外层容器可以拖拽调节高度 -->
|
||||
<!-- <StickyDragContainer v-if="currentProduct.productId" :parent-ref="appContainer"> -->
|
||||
<div v-if="currentProduct.productId">
|
||||
@@ -110,16 +178,27 @@
|
||||
<el-empty v-else description="选择产品查看配料信息" />
|
||||
|
||||
<!-- </StickyDragContainer> -->
|
||||
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup name="Product">
|
||||
import { ref, computed } from 'vue';
|
||||
import { useRouter } from 'vue-router';
|
||||
import { listProduct, getProduct, delProduct, addProduct, updateProduct } from "@/api/mat/product";
|
||||
import { listProductMaterialRelation } from "@/api/mat/productMaterialRelation";
|
||||
import { getMaterial } from "@/api/mat/material";
|
||||
import { listProductAddition, addProductAddition, updateProductAddition, delProductAddition } from "@/api/mat/productAddition";
|
||||
import bom from "@/views/mat/components/bom.vue";
|
||||
import StickyDragContainer from "@/components/StickyDragContainer/index.vue";
|
||||
import { formatDecimal } from '@/utils/gear'
|
||||
import Raw from '@/components/Renderer/Raw.vue';
|
||||
import { formatDecimal } from '@/utils/gear';
|
||||
import { getToken } from '@/utils/auth';
|
||||
|
||||
const router = useRouter();
|
||||
const bomOpen = ref(false);
|
||||
const additionOpen = ref(false);
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
|
||||
@@ -136,6 +215,10 @@ const title = ref("");
|
||||
const currentProductId = ref(null);
|
||||
const currentProduct = ref({});
|
||||
const appContainer = ref(null);
|
||||
const imageFileList = ref([]);
|
||||
const additionList = ref([]);
|
||||
const uploadUrl = ref(import.meta.env.VITE_APP_BASE_API + '/system/oss/upload');
|
||||
const headers = ref({ Authorization: "Bearer " + getToken() });
|
||||
|
||||
const formatterTime = (time) => {
|
||||
return proxy.parseTime(time, '{y}-{m}-{d}')
|
||||
@@ -185,8 +268,10 @@ function reset() {
|
||||
createBy: null,
|
||||
updateTime: null,
|
||||
updateBy: null,
|
||||
remark: null
|
||||
remark: null,
|
||||
productImages: null
|
||||
};
|
||||
imageFileList.value = [];
|
||||
proxy.resetForm("productRef");
|
||||
}
|
||||
|
||||
@@ -224,11 +309,61 @@ function handleUpdate(row) {
|
||||
getProduct(_productId).then(response => {
|
||||
loading.value = false;
|
||||
form.value = response.data;
|
||||
// 处理图片文件列表
|
||||
if (form.value.productImages) {
|
||||
imageFileList.value = form.value.productImages.split(',').map(url => ({
|
||||
name: url.substring(url.lastIndexOf('/') + 1),
|
||||
url: url
|
||||
}));
|
||||
}
|
||||
open.value = true;
|
||||
title.value = "修改产品基础信息";
|
||||
});
|
||||
}
|
||||
|
||||
/** 图片上传成功处理 */
|
||||
function handleImageUploadSuccess(response, uploadFile) {
|
||||
if (response.code === 200) {
|
||||
const imageUrl = response.data.url;
|
||||
if (form.value.productImages) {
|
||||
form.value.productImages += ',' + imageUrl;
|
||||
} else {
|
||||
form.value.productImages = imageUrl;
|
||||
}
|
||||
} else {
|
||||
proxy.$modal.msgError('上传失败:' + response.msg);
|
||||
}
|
||||
}
|
||||
|
||||
/** 图片移除处理 */
|
||||
function handleImageRemove(uploadFile, uploadFiles) {
|
||||
const imageUrl = uploadFile.url;
|
||||
if (form.value.productImages) {
|
||||
const images = form.value.productImages.split(',');
|
||||
const index = images.indexOf(imageUrl);
|
||||
if (index > -1) {
|
||||
images.splice(index, 1);
|
||||
// 当所有图片都被删除时,设置为null而不是空字符串
|
||||
form.value.productImages = images.length > 0 ? images.join(',') : null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** 图片上传前校验 */
|
||||
function beforeUpload(file) {
|
||||
const isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png';
|
||||
const isLt2M = file.size / 1024 / 1024 < 2;
|
||||
if (!isJpgOrPng) {
|
||||
proxy.$modal.msgError('只能上传 JPG/PNG 格式的图片');
|
||||
return false;
|
||||
}
|
||||
if (!isLt2M) {
|
||||
proxy.$modal.msgError('图片大小不能超过 2MB');
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/** 提交按钮 */
|
||||
function submitForm() {
|
||||
proxy.$refs["productRef"].validate(valid => {
|
||||
@@ -287,5 +422,91 @@ function handleRowClick(row) {
|
||||
currentProduct.value = row;
|
||||
}
|
||||
|
||||
function handleDetail(row) {
|
||||
// 跳转到产品详情页
|
||||
router.push(`/mat/product/detail/${row.productId}`);
|
||||
}
|
||||
|
||||
function handleAddition(row) {
|
||||
currentProductId.value = row.productId;
|
||||
// 清空附加属性列表
|
||||
additionList.value = [];
|
||||
// 获取已有的附加属性数据
|
||||
listProductAddition({ productId: row.productId }).then(response => {
|
||||
if (response.code === 200) {
|
||||
additionList.value = response.rows || [];
|
||||
}
|
||||
});
|
||||
additionOpen.value = true;
|
||||
}
|
||||
|
||||
function addAdditionItem() {
|
||||
additionList.value.push({ attrName: '', attrValue: '' });
|
||||
}
|
||||
|
||||
function removeAdditionItem(index) {
|
||||
additionList.value.splice(index, 1);
|
||||
}
|
||||
|
||||
function saveAdditions() {
|
||||
// 过滤掉空的属性项
|
||||
const validAdditions = additionList.value.filter(item => item.attrName && item.attrName.trim());
|
||||
|
||||
// 保存附加属性
|
||||
validAdditions.forEach(item => {
|
||||
const additionData = {
|
||||
productId: currentProductId.value,
|
||||
attrName: item.attrName.trim(),
|
||||
attrValue: item.attrValue ? item.attrValue.trim() : ''
|
||||
};
|
||||
|
||||
// 如果有addId,则是更新操作
|
||||
if (item.addId) {
|
||||
additionData.addId = item.addId;
|
||||
// 调用API更新附加属性
|
||||
updateProductAddition(additionData).then(response => {
|
||||
if (response.code === 200) {
|
||||
proxy.$modal.msgSuccess('保存成功');
|
||||
} else {
|
||||
proxy.$modal.msgError('保存失败');
|
||||
}
|
||||
});
|
||||
} else {
|
||||
// 调用API新增附加属性
|
||||
addProductAddition(additionData).then(response => {
|
||||
if (response.code === 200) {
|
||||
proxy.$modal.msgSuccess('保存成功');
|
||||
} else {
|
||||
proxy.$modal.msgError('保存失败');
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
additionOpen.value = false;
|
||||
}
|
||||
|
||||
getList();
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
/* 表格样式 */
|
||||
:deep(.el-table th) {
|
||||
background-color: #f5f7fa;
|
||||
font-weight: bold;
|
||||
color: #606266;
|
||||
}
|
||||
|
||||
:deep(.el-table tr:hover) {
|
||||
background-color: #ecf5ff;
|
||||
}
|
||||
|
||||
:deep(.el-table td) {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* 图片预览层样式 */
|
||||
:deep(.el-image-viewer__wrapper) {
|
||||
z-index: 9999 !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -13,6 +13,11 @@
|
||||
<el-form-item label="厂家" prop="factory">
|
||||
<el-input v-model="queryParams.factory" placeholder="请输入厂家" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<!-- <el-form-item label="物料类型" prop="materialType">
|
||||
<el-select v-model="queryParams.materialType" placeholder="请选择物料类型" @change="handleQuery" disabled>
|
||||
<el-option label="原料" value="2" />
|
||||
</el-select>
|
||||
</el-form-item> -->
|
||||
<!-- <el-form-item label="计量单位 个/公斤/米等" prop="unit">
|
||||
<el-input v-model="queryParams.unit" placeholder="请输入计量单位 个/公斤/米等" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
@@ -45,6 +50,11 @@
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<!-- <el-table-column label="配料ID 主键" align="center" prop="materialId" v-if="true" /> -->
|
||||
<el-table-column label="配料名称" align="center" prop="materialName" />
|
||||
<el-table-column label="物料类型" align="center" prop="materialType">
|
||||
<template #default="scope">
|
||||
{{ scope.row.materialType === 1 ? '辅料' : '主材' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="配料规格" align="center" prop="spec" />
|
||||
<el-table-column label="配料型号" align="center" prop="model" />
|
||||
<el-table-column label="厂家" align="center" prop="factory" />
|
||||
@@ -79,6 +89,11 @@
|
||||
<el-form-item label="配料名称" prop="materialName">
|
||||
<el-input v-model="form.materialName" placeholder="请输入配料名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="物料类型" prop="materialType">
|
||||
<el-select v-model="form.materialType" placeholder="请选择物料类型" disabled>
|
||||
<el-option label="主材" value="2" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="配料规格" prop="spec">
|
||||
<el-input v-model="form.spec" placeholder="请输入配料规格" />
|
||||
</el-form-item>
|
||||
@@ -171,7 +186,7 @@
|
||||
</template>
|
||||
</el-dialog>
|
||||
|
||||
|
||||
|
||||
<Price :materialId="currentMaterialId" ref="priceRef" />
|
||||
</div>
|
||||
</template>
|
||||
@@ -232,6 +247,7 @@ const data = reactive({
|
||||
factory: undefined,
|
||||
unit: undefined,
|
||||
currentStock: undefined,
|
||||
materialType: 2, // 固定为原料
|
||||
},
|
||||
rules: {
|
||||
}
|
||||
@@ -260,6 +276,7 @@ function reset() {
|
||||
form.value = {
|
||||
materialId: null,
|
||||
materialName: null,
|
||||
materialType: 2, // 固定为原料
|
||||
spec: null,
|
||||
model: null,
|
||||
factory: null,
|
||||
@@ -284,6 +301,7 @@ function handleQuery() {
|
||||
/** 重置按钮操作 */
|
||||
function resetQuery() {
|
||||
proxy.resetForm("queryRef");
|
||||
queryParams.value.materialType = 2; // 重置后仍为原料
|
||||
handleQuery();
|
||||
}
|
||||
|
||||
|
||||
@@ -25,6 +25,9 @@
|
||||
<el-col :span="2.5">
|
||||
<el-button size="small" type="info" plain icon="RefreshRight" @click="handleInitDaily(true)">重置当日名单</el-button>
|
||||
</el-col>
|
||||
<el-col :span="2.5">
|
||||
<el-button size="small" type="danger" plain icon="Refresh" @click="resetCumulativeAmounts">重置累计金额</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.8">
|
||||
<el-button size="small" type="primary" plain icon="Check" @click="saveAllRows">全部保存</el-button>
|
||||
</el-col>
|
||||
@@ -72,6 +75,7 @@
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column label="总金额" align="center" prop="totalAmount" width="110" />
|
||||
<el-table-column label="累计金额" align="center" prop="cumulativeAmount" width="110" />
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="170">
|
||||
<template #default="scope">
|
||||
<el-button link type="primary" icon="Check" @click="saveRow(scope.row)">保存</el-button>
|
||||
@@ -95,6 +99,27 @@ const loading = ref(true)
|
||||
const showSearch = ref(true)
|
||||
const total = ref(0)
|
||||
|
||||
// 存储累计金额数据
|
||||
const cumulativeAmounts = ref({})
|
||||
|
||||
// 从localStorage加载累计金额数据
|
||||
function loadCumulativeAmounts() {
|
||||
const stored = localStorage.getItem('wageCumulativeAmounts')
|
||||
if (stored) {
|
||||
try {
|
||||
cumulativeAmounts.value = JSON.parse(stored)
|
||||
} catch (e) {
|
||||
console.error('Failed to parse cumulative amounts:', e)
|
||||
cumulativeAmounts.value = {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 保存累计金额数据到localStorage
|
||||
function saveCumulativeAmounts() {
|
||||
localStorage.setItem('wageCumulativeAmounts', JSON.stringify(cumulativeAmounts.value))
|
||||
}
|
||||
|
||||
const data = reactive({
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
@@ -149,18 +174,43 @@ function recalcRowAmount(row) {
|
||||
const baseAmount = round2(workload * unitPrice)
|
||||
row.baseAmount = baseAmount
|
||||
row.totalAmount = round2(baseAmount + extraAmount)
|
||||
|
||||
// 重新计算累计金额
|
||||
updateCumulativeAmounts()
|
||||
}
|
||||
|
||||
function updateCumulativeAmounts() {
|
||||
// 计算当前页面的总金额
|
||||
const currentEmpAmounts = {}
|
||||
wageEntryDetailList.value.forEach(row => {
|
||||
const empName = row.empName
|
||||
if (!currentEmpAmounts[empName]) {
|
||||
currentEmpAmounts[empName] = 0
|
||||
}
|
||||
currentEmpAmounts[empName] += parseFloat(row.totalAmount) || 0
|
||||
})
|
||||
|
||||
// 更新每个员工的累计金额(基于存储的数据)
|
||||
wageEntryDetailList.value.forEach(row => {
|
||||
row.cumulativeAmount = cumulativeAmounts.value[row.empName] || 0
|
||||
})
|
||||
}
|
||||
|
||||
function getList() {
|
||||
loading.value = true
|
||||
// 加载存储的累计金额数据
|
||||
loadCumulativeAmounts()
|
||||
|
||||
listWageEntryDetail(queryParams.value).then(response => {
|
||||
const rows = response.rows || []
|
||||
|
||||
wageEntryDetailList.value = rows.map(row => {
|
||||
const r = {
|
||||
...row,
|
||||
workload: normalizeEditableValue(row.workload),
|
||||
unitPrice: normalizeEditableValue(row.unitPrice),
|
||||
extraAmount: normalizeEditableValue(row.extraAmount)
|
||||
extraAmount: normalizeEditableValue(row.extraAmount),
|
||||
cumulativeAmount: cumulativeAmounts.value[row.empName] || 0
|
||||
}
|
||||
recalcRowAmount(r)
|
||||
return r
|
||||
@@ -202,6 +252,13 @@ function buildRowPayload(row) {
|
||||
function saveRow(row) {
|
||||
const payload = buildRowPayload(row)
|
||||
updateWageEntryDetail(payload).then(() => {
|
||||
// 更新累计金额
|
||||
if (!cumulativeAmounts.value[row.empName]) {
|
||||
cumulativeAmounts.value[row.empName] = 0
|
||||
}
|
||||
cumulativeAmounts.value[row.empName] += parseFloat(payload.totalAmount) || 0
|
||||
saveCumulativeAmounts()
|
||||
|
||||
proxy.$modal.msgSuccess('保存成功')
|
||||
getList()
|
||||
})
|
||||
@@ -219,11 +276,19 @@ async function saveAllRows() {
|
||||
const payload = buildRowPayload(row)
|
||||
try {
|
||||
await updateWageEntryDetail(payload)
|
||||
// 更新累计金额
|
||||
if (!cumulativeAmounts.value[row.empName]) {
|
||||
cumulativeAmounts.value[row.empName] = 0
|
||||
}
|
||||
cumulativeAmounts.value[row.empName] += parseFloat(payload.totalAmount) || 0
|
||||
successCount++
|
||||
} catch (e) {
|
||||
failCount++
|
||||
}
|
||||
}
|
||||
// 保存累计金额数据
|
||||
saveCumulativeAmounts()
|
||||
|
||||
loading.value = false
|
||||
if (failCount === 0) {
|
||||
proxy.$modal.msgSuccess(`全部保存完成,共 ${successCount} 条`)
|
||||
@@ -244,10 +309,20 @@ function handleDelete(row) {
|
||||
|
||||
function handleExport() {
|
||||
proxy.download('oa/wageEntryDetail/export', {
|
||||
...queryParams.value
|
||||
...queryParams.value,
|
||||
cumulativeAmounts: cumulativeAmounts.value
|
||||
}, `wage_entry_detail_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
|
||||
function resetCumulativeAmounts() {
|
||||
proxy.$modal.confirm('是否确认重置所有员工的累计金额?此操作不可恢复。').then(() => {
|
||||
cumulativeAmounts.value = {}
|
||||
saveCumulativeAmounts()
|
||||
proxy.$modal.msgSuccess('累计金额已重置')
|
||||
getList()
|
||||
})
|
||||
}
|
||||
|
||||
function handleInitDaily(forceReset = false) {
|
||||
const entryDate = queryParams.value.entryDate || proxy.parseTime(new Date(), '{y}-{m}-{d}')
|
||||
const text = forceReset ? `确认重置 ${entryDate} 的当日名单吗?将先删除后重建。` : `确认初始化 ${entryDate} 的工人名单吗?`
|
||||
@@ -260,15 +335,25 @@ function handleInitDaily(forceReset = false) {
|
||||
proxy.$modal.msgSuccess(`操作成功,共写入 ${res.data || 0} 人`)
|
||||
}
|
||||
getList()
|
||||
}).catch(err => {
|
||||
console.error('重置当日名单失败:', err)
|
||||
proxy.$modal.msgError('操作失败,请稍后重试')
|
||||
})
|
||||
}
|
||||
|
||||
async function autoInitFirstEnter() {
|
||||
const entryDate = queryParams.value.entryDate || proxy.parseTime(new Date(), '{y}-{m}-{d}')
|
||||
await initDailyWorkers({ entryDate, forceReset: false })
|
||||
try {
|
||||
await initDailyWorkers({ entryDate, forceReset: false })
|
||||
} catch (err) {
|
||||
console.error('自动初始化当日名单失败:', err)
|
||||
// 静默失败,不影响页面加载
|
||||
}
|
||||
}
|
||||
|
||||
onMounted(async () => {
|
||||
// 加载存储的累计金额数据
|
||||
loadCumulativeAmounts()
|
||||
await autoInitFirstEnter()
|
||||
getList()
|
||||
})
|
||||
|
||||
@@ -91,6 +91,7 @@
|
||||
<script setup name="WageMakeup">
|
||||
import { listWageEntryDetail, updateWageEntryDetail, delWageEntryDetail } from '@/api/oa/wageEntryDetail'
|
||||
import useUserStore from '@/store/modules/user'
|
||||
import { onMounted } from 'vue'
|
||||
|
||||
const { proxy } = getCurrentInstance()
|
||||
const userStore = useUserStore()
|
||||
@@ -102,6 +103,27 @@ const open = ref(false)
|
||||
const title = ref('')
|
||||
const buttonLoading = ref(false)
|
||||
|
||||
// 存储累计金额数据
|
||||
const cumulativeAmounts = ref({})
|
||||
|
||||
// 从localStorage加载累计金额数据
|
||||
function loadCumulativeAmounts() {
|
||||
const stored = localStorage.getItem('wageCumulativeAmounts')
|
||||
if (stored) {
|
||||
try {
|
||||
cumulativeAmounts.value = JSON.parse(stored)
|
||||
} catch (e) {
|
||||
console.error('Failed to parse cumulative amounts:', e)
|
||||
cumulativeAmounts.value = {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 保存累计金额数据到localStorage
|
||||
function saveCumulativeAmounts() {
|
||||
localStorage.setItem('wageCumulativeAmounts', JSON.stringify(cumulativeAmounts.value))
|
||||
}
|
||||
|
||||
const data = reactive({
|
||||
form: {},
|
||||
queryParams: {
|
||||
@@ -197,6 +219,18 @@ function submitForm() {
|
||||
}
|
||||
// 本页面补录语义:更新当前记录并标记为已补录
|
||||
updateWageEntryDetail(payload).then(() => {
|
||||
// 更新累计金额
|
||||
const workload = parseFloat(payload.workload) || 0
|
||||
const unitPrice = parseFloat(payload.unitPrice) || 0
|
||||
const extraAmount = parseFloat(payload.extraAmount) || 0
|
||||
const totalAmount = workload * unitPrice + extraAmount
|
||||
|
||||
if (!cumulativeAmounts.value[payload.empName]) {
|
||||
cumulativeAmounts.value[payload.empName] = 0
|
||||
}
|
||||
cumulativeAmounts.value[payload.empName] += totalAmount
|
||||
saveCumulativeAmounts()
|
||||
|
||||
proxy.$modal.msgSuccess('补录成功')
|
||||
open.value = false
|
||||
getList()
|
||||
@@ -229,5 +263,8 @@ function handleExport() {
|
||||
proxy.download('oa/wageEntryDetail/export', { ...buildQuery() }, `wage_makeup_${new Date().getTime()}.xlsx`)
|
||||
}
|
||||
|
||||
getList()
|
||||
onMounted(() => {
|
||||
loadCumulativeAmounts()
|
||||
getList()
|
||||
})
|
||||
</script>
|
||||
|
||||
0
script/sql/mysql/item/ACT_EVT_LOG.sql
Normal file
0
script/sql/mysql/item/ACT_EVT_LOG.sql
Normal file
0
script/sql/mysql/item/ACT_GE_BYTEARRAY.sql
Normal file
0
script/sql/mysql/item/ACT_GE_BYTEARRAY.sql
Normal file
13
script/sql/mysql/item/ACT_GE_PROPERTY.sql
Normal file
13
script/sql/mysql/item/ACT_GE_PROPERTY.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('batch.schema.version', '6.7.2.3', 1);
|
||||
INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('cfg.execution-related-entities-count', 'true', 1);
|
||||
INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('cfg.task-related-entities-count', 'true', 1);
|
||||
INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('common.schema.version', '6.8.0.0', 1);
|
||||
INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('entitylink.schema.version', '6.8.0.0', 1);
|
||||
INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('eventsubscription.schema.version', '6.8.0.0', 1);
|
||||
INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('identitylink.schema.version', '6.8.0.0', 1);
|
||||
INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('job.schema.version', '6.8.0.0', 1);
|
||||
INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('next.dbid', '1', 1);
|
||||
INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('schema.history', 'upgrade(6.7.2.0->6.8.0.0)', 2);
|
||||
INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('schema.version', '6.8.0.0', 2);
|
||||
INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('task.schema.version', '6.8.0.0', 1);
|
||||
INSERT INTO `ACT_GE_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('variable.schema.version', '6.8.0.0', 1);
|
||||
0
script/sql/mysql/item/ACT_HI_ACTINST.sql
Normal file
0
script/sql/mysql/item/ACT_HI_ACTINST.sql
Normal file
0
script/sql/mysql/item/ACT_HI_ATTACHMENT.sql
Normal file
0
script/sql/mysql/item/ACT_HI_ATTACHMENT.sql
Normal file
0
script/sql/mysql/item/ACT_HI_COMMENT.sql
Normal file
0
script/sql/mysql/item/ACT_HI_COMMENT.sql
Normal file
0
script/sql/mysql/item/ACT_HI_DETAIL.sql
Normal file
0
script/sql/mysql/item/ACT_HI_DETAIL.sql
Normal file
0
script/sql/mysql/item/ACT_HI_ENTITYLINK.sql
Normal file
0
script/sql/mysql/item/ACT_HI_ENTITYLINK.sql
Normal file
0
script/sql/mysql/item/ACT_HI_IDENTITYLINK.sql
Normal file
0
script/sql/mysql/item/ACT_HI_IDENTITYLINK.sql
Normal file
0
script/sql/mysql/item/ACT_HI_PROCINST.sql
Normal file
0
script/sql/mysql/item/ACT_HI_PROCINST.sql
Normal file
0
script/sql/mysql/item/ACT_HI_TASKINST.sql
Normal file
0
script/sql/mysql/item/ACT_HI_TASKINST.sql
Normal file
0
script/sql/mysql/item/ACT_HI_TSK_LOG.sql
Normal file
0
script/sql/mysql/item/ACT_HI_TSK_LOG.sql
Normal file
0
script/sql/mysql/item/ACT_HI_VARINST.sql
Normal file
0
script/sql/mysql/item/ACT_HI_VARINST.sql
Normal file
0
script/sql/mysql/item/ACT_ID_BYTEARRAY.sql
Normal file
0
script/sql/mysql/item/ACT_ID_BYTEARRAY.sql
Normal file
0
script/sql/mysql/item/ACT_ID_GROUP.sql
Normal file
0
script/sql/mysql/item/ACT_ID_GROUP.sql
Normal file
0
script/sql/mysql/item/ACT_ID_INFO.sql
Normal file
0
script/sql/mysql/item/ACT_ID_INFO.sql
Normal file
0
script/sql/mysql/item/ACT_ID_MEMBERSHIP.sql
Normal file
0
script/sql/mysql/item/ACT_ID_MEMBERSHIP.sql
Normal file
0
script/sql/mysql/item/ACT_ID_PRIV.sql
Normal file
0
script/sql/mysql/item/ACT_ID_PRIV.sql
Normal file
0
script/sql/mysql/item/ACT_ID_PRIV_MAPPING.sql
Normal file
0
script/sql/mysql/item/ACT_ID_PRIV_MAPPING.sql
Normal file
1
script/sql/mysql/item/ACT_ID_PROPERTY.sql
Normal file
1
script/sql/mysql/item/ACT_ID_PROPERTY.sql
Normal file
@@ -0,0 +1 @@
|
||||
INSERT INTO `ACT_ID_PROPERTY` (`NAME_`, `VALUE_`, `REV_`) VALUES ('schema.version', '6.7.2.0', 1);
|
||||
0
script/sql/mysql/item/ACT_ID_TOKEN.sql
Normal file
0
script/sql/mysql/item/ACT_ID_TOKEN.sql
Normal file
0
script/sql/mysql/item/ACT_ID_USER.sql
Normal file
0
script/sql/mysql/item/ACT_ID_USER.sql
Normal file
0
script/sql/mysql/item/ACT_PROCDEF_INFO.sql
Normal file
0
script/sql/mysql/item/ACT_PROCDEF_INFO.sql
Normal file
0
script/sql/mysql/item/ACT_RE_DEPLOYMENT.sql
Normal file
0
script/sql/mysql/item/ACT_RE_DEPLOYMENT.sql
Normal file
0
script/sql/mysql/item/ACT_RE_MODEL.sql
Normal file
0
script/sql/mysql/item/ACT_RE_MODEL.sql
Normal file
0
script/sql/mysql/item/ACT_RE_PROCDEF.sql
Normal file
0
script/sql/mysql/item/ACT_RE_PROCDEF.sql
Normal file
0
script/sql/mysql/item/ACT_RU_ACTINST.sql
Normal file
0
script/sql/mysql/item/ACT_RU_ACTINST.sql
Normal file
0
script/sql/mysql/item/ACT_RU_DEADLETTER_JOB.sql
Normal file
0
script/sql/mysql/item/ACT_RU_DEADLETTER_JOB.sql
Normal file
0
script/sql/mysql/item/ACT_RU_ENTITYLINK.sql
Normal file
0
script/sql/mysql/item/ACT_RU_ENTITYLINK.sql
Normal file
0
script/sql/mysql/item/ACT_RU_EVENT_SUBSCR.sql
Normal file
0
script/sql/mysql/item/ACT_RU_EVENT_SUBSCR.sql
Normal file
0
script/sql/mysql/item/ACT_RU_EXECUTION.sql
Normal file
0
script/sql/mysql/item/ACT_RU_EXECUTION.sql
Normal file
0
script/sql/mysql/item/ACT_RU_EXTERNAL_JOB.sql
Normal file
0
script/sql/mysql/item/ACT_RU_EXTERNAL_JOB.sql
Normal file
0
script/sql/mysql/item/ACT_RU_HISTORY_JOB.sql
Normal file
0
script/sql/mysql/item/ACT_RU_HISTORY_JOB.sql
Normal file
0
script/sql/mysql/item/ACT_RU_IDENTITYLINK.sql
Normal file
0
script/sql/mysql/item/ACT_RU_IDENTITYLINK.sql
Normal file
0
script/sql/mysql/item/ACT_RU_JOB.sql
Normal file
0
script/sql/mysql/item/ACT_RU_JOB.sql
Normal file
0
script/sql/mysql/item/ACT_RU_SUSPENDED_JOB.sql
Normal file
0
script/sql/mysql/item/ACT_RU_SUSPENDED_JOB.sql
Normal file
0
script/sql/mysql/item/ACT_RU_TASK.sql
Normal file
0
script/sql/mysql/item/ACT_RU_TASK.sql
Normal file
0
script/sql/mysql/item/ACT_RU_TIMER_JOB.sql
Normal file
0
script/sql/mysql/item/ACT_RU_TIMER_JOB.sql
Normal file
0
script/sql/mysql/item/ACT_RU_VARIABLE.sql
Normal file
0
script/sql/mysql/item/ACT_RU_VARIABLE.sql
Normal file
0
script/sql/mysql/item/FLW_CHANNEL_DEFINITION.sql
Normal file
0
script/sql/mysql/item/FLW_CHANNEL_DEFINITION.sql
Normal file
0
script/sql/mysql/item/FLW_EVENT_DEFINITION.sql
Normal file
0
script/sql/mysql/item/FLW_EVENT_DEFINITION.sql
Normal file
0
script/sql/mysql/item/FLW_EVENT_DEPLOYMENT.sql
Normal file
0
script/sql/mysql/item/FLW_EVENT_DEPLOYMENT.sql
Normal file
0
script/sql/mysql/item/FLW_EVENT_RESOURCE.sql
Normal file
0
script/sql/mysql/item/FLW_EVENT_RESOURCE.sql
Normal file
3
script/sql/mysql/item/FLW_EV_DATABASECHANGELOG.sql
Normal file
3
script/sql/mysql/item/FLW_EV_DATABASECHANGELOG.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
INSERT INTO `FLW_EV_DATABASECHANGELOG` (`ID`, `AUTHOR`, `FILENAME`, `DATEEXECUTED`, `ORDEREXECUTED`, `EXECTYPE`, `MD5SUM`, `DESCRIPTION`, `COMMENTS`, `TAG`, `LIQUIBASE`, `CONTEXTS`, `LABELS`, `DEPLOYMENT_ID`) VALUES ('1', 'flowable', 'org/flowable/eventregistry/db/liquibase/flowable-eventregistry-db-changelog.xml', '2022-03-12 08:37:27', 1, 'EXECUTED', '8:1b0c48c9cf7945be799d868a2626d687', 'createTable tableName=FLW_EVENT_DEPLOYMENT; createTable tableName=FLW_EVENT_RESOURCE; createTable tableName=FLW_EVENT_DEFINITION; createIndex indexName=ACT_IDX_EVENT_DEF_UNIQ, tableName=FLW_EVENT_DEFINITION; createTable tableName=FLW_CHANNEL_DEFIN...', '', NULL, '4.5.0', NULL, NULL, '7074247706');
|
||||
INSERT INTO `FLW_EV_DATABASECHANGELOG` (`ID`, `AUTHOR`, `FILENAME`, `DATEEXECUTED`, `ORDEREXECUTED`, `EXECTYPE`, `MD5SUM`, `DESCRIPTION`, `COMMENTS`, `TAG`, `LIQUIBASE`, `CONTEXTS`, `LABELS`, `DEPLOYMENT_ID`) VALUES ('2', 'flowable', 'org/flowable/eventregistry/db/liquibase/flowable-eventregistry-db-changelog.xml', '2022-03-12 08:37:28', 2, 'EXECUTED', '8:0ea825feb8e470558f0b5754352b9cda', 'addColumn tableName=FLW_CHANNEL_DEFINITION; addColumn tableName=FLW_CHANNEL_DEFINITION', '', NULL, '4.5.0', NULL, NULL, '7074247706');
|
||||
INSERT INTO `FLW_EV_DATABASECHANGELOG` (`ID`, `AUTHOR`, `FILENAME`, `DATEEXECUTED`, `ORDEREXECUTED`, `EXECTYPE`, `MD5SUM`, `DESCRIPTION`, `COMMENTS`, `TAG`, `LIQUIBASE`, `CONTEXTS`, `LABELS`, `DEPLOYMENT_ID`) VALUES ('3', 'flowable', 'org/flowable/eventregistry/db/liquibase/flowable-eventregistry-db-changelog.xml', '2022-03-12 08:37:28', 3, 'EXECUTED', '8:3c2bb293350b5cbe6504331980c9dcee', 'customChange', '', NULL, '4.5.0', NULL, NULL, '7074247706');
|
||||
1
script/sql/mysql/item/FLW_EV_DATABASECHANGELOGLOCK.sql
Normal file
1
script/sql/mysql/item/FLW_EV_DATABASECHANGELOGLOCK.sql
Normal file
@@ -0,0 +1 @@
|
||||
INSERT INTO `FLW_EV_DATABASECHANGELOGLOCK` (`ID`, `LOCKED`, `LOCKGRANTED`, `LOCKEDBY`) VALUES (1, b'0', NULL, NULL);
|
||||
0
script/sql/mysql/item/FLW_RU_BATCH.sql
Normal file
0
script/sql/mysql/item/FLW_RU_BATCH.sql
Normal file
0
script/sql/mysql/item/FLW_RU_BATCH_PART.sql
Normal file
0
script/sql/mysql/item/FLW_RU_BATCH_PART.sql
Normal file
2
script/sql/mysql/item/dv_check_machinery.sql
Normal file
2
script/sql/mysql/item/dv_check_machinery.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
INSERT INTO `dv_check_machinery` (`record_id`, `plan_id`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (203, 207, 214, 'M0046', 'WG-A1型纺织机', '万国', 'WG-A1', '', NULL, NULL, 0, 0, '', '2022-09-01 23:01:54', '', NULL);
|
||||
INSERT INTO `dv_check_machinery` (`record_id`, `plan_id`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (204, 208, 214, 'M0046', 'WG-A1型纺织机', '万国', 'WG-A1', '', NULL, NULL, 0, 0, '', '2022-09-01 23:02:52', '', NULL);
|
||||
2
script/sql/mysql/item/dv_check_plan.sql
Normal file
2
script/sql/mysql/item/dv_check_plan.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
INSERT INTO `dv_check_plan` (`plan_id`, `plan_code`, `plan_name`, `plan_type`, `start_date`, `end_date`, `cycle_type`, `cycle_count`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (207, 'PLAN2022048', '1', 'CHECK', NULL, NULL, 'DAY', 1, 'FINISHED', '', NULL, NULL, 0, 0, '', '2022-09-01 23:01:41', '', '2025-08-07 11:58:02');
|
||||
INSERT INTO `dv_check_plan` (`plan_id`, `plan_code`, `plan_name`, `plan_type`, `start_date`, `end_date`, `cycle_type`, `cycle_count`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (208, 'PLAN2022050', '2', 'MAINTEN', '2025-04-09 00:00:00', '2025-04-29 00:00:00', 'WEEK', 4, 'PREPARE', '', NULL, NULL, 0, 0, '', '2022-09-01 23:02:44', '', '2025-08-07 20:07:20');
|
||||
6
script/sql/mysql/item/dv_check_record.sql
Normal file
6
script/sql/mysql/item/dv_check_record.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
INSERT INTO `dv_check_record` (`record_id`, `plan_id`, `plan_code`, `plan_name`, `plan_type`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `check_time`, `user_id`, `user_name`, `nick_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (201, 207, 'PLAN2022048', '1', 'CHECK', 213, 'M0036', '测试人员', '1', '12', '2024-12-26 00:00:00', NULL, NULL, NULL, 'FINISHED', '', NULL, NULL, 0, 0, '', '2024-12-26 16:14:18', '', '2024-12-26 16:23:24');
|
||||
INSERT INTO `dv_check_record` (`record_id`, `plan_id`, `plan_code`, `plan_name`, `plan_type`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `check_time`, `user_id`, `user_name`, `nick_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (202, 207, 'PLAN2022048', '1', 'CHECK', 212, 'M0024', 'QQQQQ', 'QW', 'Q1001', '2024-12-26 18:18:20', NULL, NULL, NULL, 'PREPARE', '', NULL, NULL, 0, 0, '', '2024-12-26 18:18:25', '', NULL);
|
||||
INSERT INTO `dv_check_record` (`record_id`, `plan_id`, `plan_code`, `plan_name`, `plan_type`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `check_time`, `user_id`, `user_name`, `nick_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (203, 207, 'PLAN2022048', '1', 'CHECK', 212, 'M0024', 'QQQQQ', 'QW', 'Q1001', '2024-12-26 18:36:46', NULL, NULL, NULL, 'PREPARE', '', NULL, NULL, 0, 0, '', '2024-12-26 18:36:54', '', NULL);
|
||||
INSERT INTO `dv_check_record` (`record_id`, `plan_id`, `plan_code`, `plan_name`, `plan_type`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `check_time`, `user_id`, `user_name`, `nick_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (204, 207, 'PLAN2022048', '1', 'CHECK', 212, 'M0024', 'QQQQQ', 'QW', 'Q1001', '2024-12-26 18:37:49', NULL, NULL, NULL, 'PREPARE', '', NULL, NULL, 0, 0, '', '2024-12-26 18:38:01', '', '2024-12-27 15:16:53');
|
||||
INSERT INTO `dv_check_record` (`record_id`, `plan_id`, `plan_code`, `plan_name`, `plan_type`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `check_time`, `user_id`, `user_name`, `nick_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (205, 207, 'PLAN2022048', '1', 'CHECK', 212, 'M0024', 'QQQQQ', 'QW', 'Q1001', '2024-12-26 18:47:05', 100, 'test', '测试员', 'PREPARE', '', NULL, NULL, 0, 0, '', '2024-12-26 18:47:27', '', NULL);
|
||||
INSERT INTO `dv_check_record` (`record_id`, `plan_id`, `plan_code`, `plan_name`, `plan_type`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `check_time`, `user_id`, `user_name`, `nick_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (212, 207, 'PLAN2022048', '1', 'CHECK', 214, 'M0046', 'WG-A1型纺织机', '万国', 'WG-A1', '2025-04-30 17:22:13', 1947580187189002242, 'neko', 'neko', 'PREPARE', '', NULL, NULL, 0, 0, '', '2025-04-30 17:22:19', '', '2025-08-07 13:10:29');
|
||||
4
script/sql/mysql/item/dv_check_record_line.sql
Normal file
4
script/sql/mysql/item/dv_check_record_line.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
INSERT INTO `dv_check_record_line` (`line_id`, `record_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `check_status`, `check_result`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (204, 205, 202, 'SUB039', '123', 'CHECK', '123', '123', 'Y', NULL, NULL, NULL, 0, 0, '', '2024-12-27 15:17:04', '', NULL);
|
||||
INSERT INTO `dv_check_record_line` (`line_id`, `record_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `check_status`, `check_result`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (212, 212, 202, 'SUB039', '123', 'CHECK', '123', '123', 'Y', NULL, NULL, NULL, 0, 0, '', '2025-08-07 13:14:43', '', NULL);
|
||||
INSERT INTO `dv_check_record_line` (`line_id`, `record_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `check_status`, `check_result`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (213, 212, 202, 'SUB039', '123', 'CHECK', '123', '123', 'Y', NULL, NULL, NULL, 0, 0, '', '2025-08-07 17:54:14', '', NULL);
|
||||
INSERT INTO `dv_check_record_line` (`line_id`, `record_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `check_status`, `check_result`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (214, 212, 202, 'SUB039', '123', 'CHECK', '123', '123', 'N', NULL, NULL, NULL, 0, 0, '', '2025-08-07 17:54:26', '', NULL);
|
||||
3
script/sql/mysql/item/dv_check_subject.sql
Normal file
3
script/sql/mysql/item/dv_check_subject.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
INSERT INTO `dv_check_subject` (`record_id`, `plan_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 207, 202, 'SUB039', '123', 'CHECK', '123', '123', '', NULL, NULL, 0, 0, '', '2024-12-26 16:03:48', '', NULL);
|
||||
INSERT INTO `dv_check_subject` (`record_id`, `plan_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (2, 207, 203, 'SUB049', '点检项目2', 'CHECK', '液压是否正常', NULL, '', NULL, NULL, 0, 0, '', '2024-12-26 16:03:48', '', NULL);
|
||||
INSERT INTO `dv_check_subject` (`record_id`, `plan_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (4, 208, 202, 'SUB039', '123', 'CHECK', '123', '123', '', NULL, NULL, 0, 0, '', '2025-08-07 11:55:04', '', NULL);
|
||||
4
script/sql/mysql/item/dv_machinery.sql
Normal file
4
script/sql/mysql/item/dv_machinery.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
INSERT INTO `dv_machinery` (`machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `workshop_id`, `workshop_code`, `workshop_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`, `last_mainten_time`, `last_check_time`) VALUES (212, 'M0024', 'QQQQ', 'QW', 'Q1001', 202, NULL, NULL, 213, 'WS079', '组装车间', 'REPAIR', 'QQ', NULL, NULL, 0, 0, '', '2022-08-18 11:01:42', '', '2025-08-07 11:22:18', NULL, NULL);
|
||||
INSERT INTO `dv_machinery` (`machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `workshop_id`, `workshop_code`, `workshop_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`, `last_mainten_time`, `last_check_time`) VALUES (213, 'M0036', '测试人员', '1', '12', 213, NULL, NULL, 213, 'WS079', '组装车间', 'STOP', '123', NULL, NULL, 0, 0, '', '2022-08-19 14:36:15', '', '2025-05-16 14:09:23', NULL, NULL);
|
||||
INSERT INTO `dv_machinery` (`machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `workshop_id`, `workshop_code`, `workshop_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`, `last_mainten_time`, `last_check_time`) VALUES (214, 'M0046', 'WG-A1型纺织机', '万国', 'WG-A1', 214, NULL, NULL, 209, NULL, NULL, 'STOP', '', NULL, NULL, 0, 0, '', '2022-08-21 19:42:53', '', NULL, NULL, NULL);
|
||||
INSERT INTO `dv_machinery` (`machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `workshop_id`, `workshop_code`, `workshop_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`, `last_mainten_time`, `last_check_time`) VALUES (215, 'M0047', 'uytuyu', 'tyu', 'utu', 204, NULL, NULL, 200, NULL, NULL, 'STOP', '', NULL, NULL, 0, 0, '', '2022-08-22 09:48:52', '', NULL, NULL, NULL);
|
||||
19
script/sql/mysql/item/dv_machinery_type.sql
Normal file
19
script/sql/mysql/item/dv_machinery_type.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (1, 'M_TYPE_000', '设备分类', 0, '0', 'Y', '', NULL, NULL, 0, 0, 'admin', '2022-05-08 19:26:57', '', NULL);
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (200, 'M_TYPE_002', '注塑机', 210, '0,1', 'Y', '这个是一种类型的裁剪机', NULL, NULL, 0, 0, '', '2022-05-08 19:50:41', '', '2022-08-22 09:47:02');
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (201, 'M_TYPE_003', '组装机', 1, '0,1', 'Y', '', NULL, NULL, 0, 0, '', '2022-05-08 19:50:57', '', '2025-07-25 14:01:56');
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (202, 'M_TYPE_004', '大型注塑机', 200, '0,1,200', 'Y', '', NULL, NULL, 0, 0, '', '2022-05-08 19:51:10', '', '2022-05-14 13:39:51');
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (203, 'M_TYPE_005', '大型组装机', 201, '0,1,201', 'Y', '', NULL, NULL, 0, 0, '', '2022-05-08 19:51:25', '', '2022-07-17 12:19:14');
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (204, 'M_TYPE_006', '包装机', 1, '0,1', 'Y', '', NULL, NULL, 0, 0, '', '2022-05-14 13:40:03', '', NULL);
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (205, 'M_TYPE_007', '清洗类', 1, '0,1', 'Y', '', NULL, NULL, 0, 0, '', '2022-05-14 13:43:59', '', '2022-05-14 13:44:11');
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (206, 'M_TYPE_008', '喷砂机', 205, '0,1,205', 'Y', '', NULL, NULL, 0, 0, '', '2022-05-14 13:44:23', '', NULL);
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (207, 'M_TYPE_009', '清洗机', 205, '0,1,205', 'Y', '', NULL, NULL, 0, 0, '', '2022-05-14 13:44:33', '', NULL);
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (208, 'M_TYPE_010', '检测类', 1, '0,1', 'Y', '', NULL, NULL, 0, 0, '', '2022-05-14 13:49:13', '', NULL);
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (209, 'M_TYPE_011', 'CCD检测台', 208, '0,1,208', 'Y', '', NULL, NULL, 0, 0, '', '2022-05-14 13:49:25', '', NULL);
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (210, 'M_TYPE_015', '臂架焊机', 1, '0,1', 'Y', '', NULL, NULL, 0, 0, '', '2022-08-17 15:32:56', '', NULL);
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (211, 'M_TYPE_016', '华远焊机', 1, '0,1', 'Y', '', NULL, NULL, 0, 0, '', '2022-08-17 15:33:16', '', NULL);
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (212, 'M_TYPE_017', '麦格米特焊机', 1, '0,1', 'Y', '', NULL, NULL, 0, 0, '', '2022-08-17 15:33:24', '', NULL);
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (213, 'M_TYPE_018', '测试类', 1, '0,1', 'Y', '', NULL, NULL, 0, 0, '', '2022-08-19 14:35:27', '', '2022-08-19 14:35:45');
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (214, 'M_TYPE_021', '纺织机', 1, '0,1', 'Y', '', NULL, NULL, 0, 0, '', '2022-08-21 19:03:44', '', NULL);
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (215, 'MT-CE80374768A6', '1', 1, '0,1', 'Y', '', NULL, NULL, 0, 0, '', '2025-08-06 23:18:59', '', NULL);
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (216, 'MT-3BF121D84891', '2', 215, '0,1,215', 'Y', '', NULL, NULL, 0, 0, '', '2025-08-06 23:21:33', '', NULL);
|
||||
INSERT INTO `dv_machinery_type` (`machinery_type_id`, `machinery_type_code`, `machinery_type_name`, `parent_type_id`, `ancestors`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (217, 'MT-BF779FBC7492', '设备1', 0, '0', 'Y', '1111', NULL, NULL, 0, 0, '', '2025-09-24 15:01:48', '', NULL);
|
||||
4
script/sql/mysql/item/dv_mainten_record.sql
Normal file
4
script/sql/mysql/item/dv_mainten_record.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
INSERT INTO `dv_mainten_record` (`record_id`, `plan_id`, `plan_code`, `plan_name`, `plan_type`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `mainten_time`, `user_id`, `user_name`, `nick_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (200, NULL, NULL, NULL, NULL, 212, 'M0024', 'QQQQQ', 'QW', 'Q1001', '2024-12-26 00:00:00', 1, 'admin', '若依', 'FINISHED', '', NULL, NULL, 0, 0, '', '2024-12-26 19:20:14', '', '2024-12-26 19:23:12');
|
||||
INSERT INTO `dv_mainten_record` (`record_id`, `plan_id`, `plan_code`, `plan_name`, `plan_type`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `mainten_time`, `user_id`, `user_name`, `nick_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (201, NULL, NULL, '', NULL, 212, 'M0024', 'QQQQQ', 'QW', 'Q1001', '2025-07-10 00:00:00', NULL, 'admin', NULL, 'FINISHED', '', NULL, NULL, 0, 0, '', '2025-07-25 14:03:57', '', '2025-07-25 14:04:02');
|
||||
INSERT INTO `dv_mainten_record` (`record_id`, `plan_id`, `plan_code`, `plan_name`, `plan_type`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `mainten_time`, `user_id`, `user_name`, `nick_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (202, NULL, NULL, NULL, NULL, 212, 'M0024', 'QQQQQ', 'QW', 'Q1001', '2025-06-29 00:00:00', NULL, 'admin', NULL, 'PREPARE', '', NULL, NULL, 0, 0, '', '2025-07-25 14:04:24', '', '2025-07-25 14:05:24');
|
||||
INSERT INTO `dv_mainten_record` (`record_id`, `plan_id`, `plan_code`, `plan_name`, `plan_type`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `mainten_time`, `user_id`, `user_name`, `nick_name`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (204, NULL, NULL, NULL, NULL, 215, 'M0047', 'uytuyu', 'tyu', 'utu', '2025-08-12 00:00:00', 1947579932234039297, 'xinlei', 'xinlei', 'PREPARE', '', NULL, NULL, 0, 0, '', '2025-08-07 13:26:08', '', NULL);
|
||||
3
script/sql/mysql/item/dv_mainten_record_line.sql
Normal file
3
script/sql/mysql/item/dv_mainten_record_line.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
INSERT INTO `dv_mainten_record_line` (`line_id`, `record_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `mainten_status`, `mainten_result`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (3, 21, 21, '2', '2', '', '<p><br></p>', '2', '1', '2', NULL, NULL, 0, 0, '', '2025-07-25 14:26:24', '', '2025-08-07 13:27:37');
|
||||
INSERT INTO `dv_mainten_record_line` (`line_id`, `record_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `mainten_status`, `mainten_result`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (7, 1, 1, '1', '1', '', '<p>1</p>', '1', '1', NULL, NULL, NULL, 0, 0, '', '2025-08-07 13:27:03', '', NULL);
|
||||
INSERT INTO `dv_mainten_record_line` (`line_id`, `record_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `mainten_status`, `mainten_result`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (8, 1, 1, '1', NULL, NULL, '<p>1</p>', '1', '0', NULL, NULL, NULL, 0, 0, '', '2025-08-07 20:30:54', '', NULL);
|
||||
2
script/sql/mysql/item/dv_repair.sql
Normal file
2
script/sql/mysql/item/dv_repair.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
INSERT INTO `dv_repair` (`repair_id`, `repair_code`, `repair_name`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `machinery_type_id`, `require_date`, `finish_date`, `confirm_date`, `repair_result`, `accepted_id`, `accepted_name`, `accepted_by`, `confirm_id`, `confirm_name`, `confirm_by`, `source_doc_type`, `source_doc_id`, `source_doc_code`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (200, 'REP2025001', NULL, 214, 'M0046', 'WG-A1型纺织机', '万国', 'WG-A1', 214, '2025-05-06 16:08:15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'PREPARE', '', NULL, NULL, 0, 0, '', '2025-05-06 16:09:10', '', '2025-07-25 14:05:42');
|
||||
INSERT INTO `dv_repair` (`repair_id`, `repair_code`, `repair_name`, `machinery_id`, `machinery_code`, `machinery_name`, `machinery_brand`, `machinery_spec`, `machinery_type_id`, `require_date`, `finish_date`, `confirm_date`, `repair_result`, `accepted_id`, `accepted_name`, `accepted_by`, `confirm_id`, `confirm_name`, `confirm_by`, `source_doc_type`, `source_doc_id`, `source_doc_code`, `status`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (201, 'REP202500', NULL, 214, 'M0046', 'WG-A1型纺织机', '万国', 'WG-A1', 214, '2025-05-06 16:10:26', NULL, NULL, NULL, 100, 'test', '报工审核员', 102, 'sg', '王主管', NULL, NULL, NULL, 'FINISHED', '', NULL, NULL, 0, 0, '', '2025-05-06 16:10:38', '', '2025-08-07 13:57:40');
|
||||
4
script/sql/mysql/item/dv_repair_line.sql
Normal file
4
script/sql/mysql/item/dv_repair_line.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
INSERT INTO `dv_repair_line` (`line_id`, `repair_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `malfunction`, `malfunction_url`, `repair_des`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (200, 201, NULL, NULL, NULL, NULL, 'u呼呼', NULL, '花城广场吧', NULL, '何处合成愁_耶耶耶', '', NULL, NULL, 0, 0, '', '2025-05-06 17:55:49', '', '2025-05-06 18:02:05');
|
||||
INSERT INTO `dv_repair_line` (`line_id`, `repair_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `malfunction`, `malfunction_url`, `repair_des`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (201, 200, 200, 'SUB011', '润滑', NULL, '冲床无明显摩擦声', NULL, '1', '1', '1', '', NULL, NULL, 0, 0, '', '2025-07-25 14:01:24', '', NULL);
|
||||
INSERT INTO `dv_repair_line` (`line_id`, `repair_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `malfunction`, `malfunction_url`, `repair_des`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (202, 202, 201, 'SUB003', '测试萨博', NULL, '不知道为了什么.....', NULL, '42', '42', '42', '', NULL, NULL, 0, 0, '', '2025-07-25 15:11:06', '', NULL);
|
||||
INSERT INTO `dv_repair_line` (`line_id`, `repair_id`, `subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `malfunction`, `malfunction_url`, `repair_des`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (203, 203, 201, 'SUB003', '测试萨博', NULL, '不知道为了什么.....', NULL, '1', '1', '1', '', NULL, NULL, 0, 0, '', '2025-07-25 15:25:17', '', NULL);
|
||||
0
script/sql/mysql/item/dv_special_equipment.sql
Normal file
0
script/sql/mysql/item/dv_special_equipment.sql
Normal file
3
script/sql/mysql/item/dv_subject.sql
Normal file
3
script/sql/mysql/item/dv_subject.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
INSERT INTO `dv_subject` (`subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (200, 'SUB01', '润滑', 'MAINTEN', '冲床无明显摩擦声', NULL, 'Y', '', NULL, NULL, 0, 0, '', '2022-06-16 20:32:20', '', '2025-08-07 11:35:30');
|
||||
INSERT INTO `dv_subject` (`subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (201, 'SUB003', '测试萨博', 'MAINTEN', '不知道为了什么.....', 'SD1/SD2/SD3', 'Y', '', NULL, NULL, 0, 0, '', '2022-08-13 22:01:08', '', NULL);
|
||||
INSERT INTO `dv_subject` (`subject_id`, `subject_code`, `subject_name`, `subject_type`, `subject_content`, `subject_standard`, `enable_flag`, `remark`, `attr1`, `attr2`, `attr3`, `attr4`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES (202, 'SUB039', '123', 'CHECK', '123', '123', 'Y', '', NULL, NULL, 0, 0, '', '2022-08-19 15:03:25', '', NULL);
|
||||
11
script/sql/mysql/item/gear_attendance_piece_detail.sql
Normal file
11
script/sql/mysql/item/gear_attendance_piece_detail.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
INSERT INTO `gear_attendance_piece_detail` (`detail_id`, `record_id`, `workpiece_code`, `workpiece_name`, `piece_quantity`, `unit_price`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1, 1953354034685231106, 'WP001', '齿轮A', 10, 5.00, '2025-09-17 05:08:56', 'system', '2025-09-17 05:10:18', NULL, 0, '标准件');
|
||||
INSERT INTO `gear_attendance_piece_detail` (`detail_id`, `record_id`, `workpiece_code`, `workpiece_name`, `piece_quantity`, `unit_price`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (2, 1953354034685231107, 'WP002', '齿轮B', 15, 6.67, '2025-09-17 05:08:56', 'system', '2025-09-17 05:10:17', NULL, 0, '精密件');
|
||||
INSERT INTO `gear_attendance_piece_detail` (`detail_id`, `record_id`, `workpiece_code`, `workpiece_name`, `piece_quantity`, `unit_price`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (3, 1953354034685231108, 'WP003', '轴承', 20, 5.00, '2025-09-17 05:08:56', 'system', '2025-09-17 05:10:17', NULL, 0, '通用轴承');
|
||||
INSERT INTO `gear_attendance_piece_detail` (`detail_id`, `record_id`, `workpiece_code`, `workpiece_name`, `piece_quantity`, `unit_price`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (4, 1953354034685231109, 'WP004', '轴套', 10, 14.00, '2025-09-17 05:08:56', 'system', '2025-09-17 05:10:17', NULL, 0, '特殊材质');
|
||||
INSERT INTO `gear_attendance_piece_detail` (`detail_id`, `record_id`, `workpiece_code`, `workpiece_name`, `piece_quantity`, `unit_price`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (5, 1953354034685231110, 'WP001', '齿轮A', 8, 5.00, '2025-09-17 05:08:56', 'system', '2025-09-17 05:10:17', NULL, 0, '常规生产');
|
||||
INSERT INTO `gear_attendance_piece_detail` (`detail_id`, `record_id`, `workpiece_code`, `workpiece_name`, `piece_quantity`, `unit_price`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (6, 1953354034685231111, 'WP005', '垫片', 10, 4.40, '2025-09-17 05:08:56', 'system', '2025-09-17 05:10:17', NULL, 0, '批量生产');
|
||||
INSERT INTO `gear_attendance_piece_detail` (`detail_id`, `record_id`, `workpiece_code`, `workpiece_name`, `piece_quantity`, `unit_price`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (7, 1953354034685231112, 'WP006', '螺栓', 5, 2.00, '2025-09-17 05:08:56', 'system', '2025-09-17 05:10:17', NULL, 0, '辅助零件');
|
||||
INSERT INTO `gear_attendance_piece_detail` (`detail_id`, `record_id`, `workpiece_code`, `workpiece_name`, `piece_quantity`, `unit_price`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (8, 1953354034685231113, 'WP007', '螺母', 15, 1.33, '2025-09-17 05:08:56', 'system', '2025-09-17 05:10:17', NULL, 0, '配套零件');
|
||||
INSERT INTO `gear_attendance_piece_detail` (`detail_id`, `record_id`, `workpiece_code`, `workpiece_name`, `piece_quantity`, `unit_price`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (9, 1953354034685231114, 'WP008', '销子', 5, 3.00, '2025-09-17 05:08:56', 'system', '2025-09-17 05:10:17', NULL, 0, '标准件');
|
||||
INSERT INTO `gear_attendance_piece_detail` (`detail_id`, `record_id`, `workpiece_code`, `workpiece_name`, `piece_quantity`, `unit_price`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (10, 1953354034685231115, 'WP009', '弹簧', 10, 3.00, '2025-09-17 05:08:56', 'system', '2025-09-17 05:10:17', NULL, 0, '小规格');
|
||||
INSERT INTO `gear_attendance_piece_detail` (`detail_id`, `record_id`, `workpiece_code`, `workpiece_name`, `piece_quantity`, `unit_price`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1968191550609207297, 1953354034685231108, 'WP004', '弓箭', 10, 20.00, '2025-09-17 13:53:28', 'admin', '2025-09-17 13:53:28', 'admin', 0, NULL);
|
||||
32
script/sql/mysql/item/gear_attendance_record.sql
Normal file
32
script/sql/mysql/item/gear_attendance_record.sql
Normal file
@@ -0,0 +1,32 @@
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953011248296226819, 1, '2025-08-06', 'attendance', '2025-08-06 09:40:16', '2025-08-06 17:40:25', 8, NULL, NULL, NULL, 'pending', '2025-08-06 09:40:43', 'system', '2025-08-06 09:40:43', NULL, 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953296921707483137, 1953296510648913922, '2025-08-07', 'overtime', '2025-08-07 00:00:00', '2025-08-07 08:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 11:27:31', 'admin', '2025-08-07 14:58:25', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953300232422625281, 1953296510648913922, '2025-08-06', 'attendance', '2025-08-06 09:00:00', '2025-08-06 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 11:40:41', 'admin', '2025-08-07 05:43:38', 'admin', 2, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953301490252476418, 1953296510648913922, '2025-08-07', 'attendance', '2025-08-07 09:00:00', '2025-08-07 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 11:45:41', 'admin', '2025-08-07 05:43:34', 'admin', 2, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953302266844639233, 1953296510648913922, '2025-08-07', 'attendance', '2025-08-07 09:00:00', '2025-08-07 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 11:48:46', 'admin', '2025-08-07 11:48:46', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953343755536646145, 1953296510648913922, '2025-08-08', 'attendance', '2025-08-08 09:00:00', '2025-08-08 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 14:33:37', 'admin', '2025-08-07 14:33:37', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953346784226787329, 1953296510648913922, '2025-08-06', 'attendance', '2025-08-06 09:00:00', '2025-08-06 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 14:45:39', 'admin', '2025-08-07 14:45:39', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953346821518344193, 1953296510648913922, '2025-08-05', 'attendance', '2025-08-05 09:00:00', '2025-08-05 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 14:45:48', 'admin', '2025-08-07 14:45:48', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953346846235377665, 1953296510648913922, '2025-08-04', 'attendance', '2025-08-04 09:00:00', '2025-08-04 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 14:45:54', 'admin', '2025-08-07 14:45:54', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953346874945388545, 1953296510648913922, '2025-08-03', 'attendance', '2025-08-03 09:00:00', '2025-08-03 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 14:46:01', 'admin', '2025-08-07 14:46:01', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953346897913397250, 1953296510648913922, '2025-08-02', 'attendance', '2025-08-02 09:00:00', '2025-08-02 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 14:46:07', 'admin', '2025-08-07 14:46:07', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953346924144574465, 1953296510648913922, '2025-08-01', 'attendance', '2025-08-01 09:00:00', '2025-08-01 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 14:46:13', 'admin', '2025-08-07 14:46:13', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953348329890725890, 1953296599563964417, '2025-08-07', 'attendance', '2025-08-07 09:00:00', '2025-08-07 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 14:51:48', 'admin', '2025-08-07 14:51:48', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953348361016655873, 1953296599563964417, '2025-08-06', 'attendance', '2025-08-06 09:00:00', '2025-08-06 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 14:51:55', 'admin', '2025-08-07 14:51:55', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953348430897954818, 1953296599563964417, '2025-08-05', 'attendance', '2025-08-05 09:00:00', '2025-08-05 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 14:52:12', 'admin', '2025-08-07 14:52:12', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953348455304609794, 1953296599563964417, '2025-08-04', 'attendance', '2025-08-04 09:00:00', '2025-08-04 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 14:52:18', 'admin', '2025-08-07 14:52:18', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953348480894058498, 1953296599563964417, '2025-08-03', 'attendance', '2025-08-03 09:00:00', '2025-08-03 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 14:52:24', 'admin', '2025-08-07 14:52:24', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953348693243281409, 1953296599563964417, '2025-08-03', 'overtime', '2025-08-03 20:00:00', '2025-08-03 23:59:59', 4, NULL, NULL, NULL, 'pending', '2025-08-07 14:53:15', 'admin', '2025-08-07 14:53:15', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953349133267714050, 1953296599563964417, '2025-08-05', 'overtime', '2025-08-05 21:00:39', '2025-08-05 22:00:39', 1, NULL, NULL, NULL, 'pending', '2025-08-07 14:55:00', 'admin', '2025-08-07 14:55:00', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953353699853942785, 1953296689095577601, '2025-08-09', 'attendance', '2025-08-09 09:00:00', '2025-08-09 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 15:13:08', 'admin', '2025-08-07 15:13:46', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953353756955197442, 1953296689095577601, '2025-08-06', 'attendance', '2025-08-06 09:00:00', '2025-08-06 18:00:00', 8, NULL, NULL, NULL, 'pending', '2025-08-07 15:13:22', 'admin', '2025-08-07 15:13:22', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953354034685231105, 1953296689095577601, '2025-08-05', 'overtime', '2025-08-05 15:00:00', '2025-08-05 17:00:00', 2, NULL, NULL, NULL, 'pending', '2025-08-07 15:14:28', 'admin', '2025-08-07 15:14:28', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953354034685231106, 1953296689095577601, '2025-08-05', 'attendance', '2025-08-05 15:00:00', '2025-08-05 17:00:00', 8, 'hourly', NULL, 160.00, 'approved', '2025-09-17 05:08:56', 'system', '2025-09-18 07:22:47', NULL, 2, '正常工作日出勤');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953354034685231107, 1953296689095577601, '2025-08-05', 'overtime', '2025-08-05 15:00:00', '2025-08-05 17:00:00', 4, 'hourly', NULL, 120.00, 'approved', '2025-09-17 05:08:56', 'system', '2025-09-17 05:09:49', NULL, 0, '项目紧急加班');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953354034685231108, 1953296689095577601, '2025-08-05', 'attendance', '2025-08-05 15:00:00', '2025-08-05 17:00:00', 8, 'piecework', 25, 200.00, 'processed', '2025-09-17 05:08:56', 'system', '2025-09-17 05:09:49', NULL, 0, '计件工资出勤');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953354034685231109, 1953296689095577601, '2025-08-05', 'travel', '2025-08-05 15:00:00', '2025-08-05 17:00:00', 10, 'hourly', NULL, 250.00, 'approved', '2025-09-17 05:08:56', 'system', '2025-09-17 05:09:49', NULL, 0, '外地出差');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953354034685231110, 1953296689095577601, '2025-08-05', 'leave', '2025-08-05 15:00:00', '2025-08-05 17:00:00', NULL, NULL, NULL, 0.00, 'approved', '2025-09-17 05:08:56', 'system', '2025-09-17 05:09:49', NULL, 0, '年假');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953354034685231111, 1953296689095577601, '2025-08-05', 'attendance', '2025-08-05 15:00:00', '2025-08-05 17:00:00', 8, 'hourly', NULL, 180.00, 'pending', '2025-09-17 05:08:56', 'system', '2025-09-18 07:22:49', NULL, 2, '待审批出勤');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953354034685231112, 1953296689095577601, '2025-08-05', 'overtime', '2025-08-05 15:00:00', '2025-08-05 17:00:00', 4, 'hourly', NULL, 140.00, 'rejected', '2025-09-17 05:08:56', 'system', '2025-09-17 05:09:49', NULL, 0, '加班申请未通过');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953354034685231113, 1953296689095577601, '2025-08-05', 'attendance', '2025-08-05 15:00:00', '2025-08-05 17:00:00', 8, 'piecework', 30, 240.00, 'processed', '2025-09-17 05:08:56', 'system', '2025-09-17 05:09:49', NULL, 0, '计件工作,完成30件');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953354034685231114, 1953296689095577601, '2025-08-05', 'travel', '2025-08-05 15:00:00', '2025-08-05 17:00:00', 12, 'hourly', NULL, 360.00, 'approved', '2025-09-17 05:08:56', 'system', '2025-09-17 05:09:49', NULL, 0, '长途出差');
|
||||
INSERT INTO `gear_attendance_record` (`record_id`, `user_id`, `record_date`, `record_type`, `start_time`, `end_time`, `duration_hour`, `payment_type`, `piece_count`, `wage`, `status`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953354034685231115, 1953296689095577601, '2025-08-05', 'attendance', '2025-08-05 15:00:00', '2025-08-05 17:00:00', 8, 'piecework', 18, 144.00, 'processed', '2025-09-17 05:08:56', 'system', '2025-09-17 05:09:49', NULL, 0, '计件工作,完成18件');
|
||||
12
script/sql/mysql/item/gear_attendance_summary.sql
Normal file
12
script/sql/mysql/item/gear_attendance_summary.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
INSERT INTO `gear_attendance_summary` (`summary_id`, `summary_name`, `start_date`, `end_date`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953338499147718657, '2025年8月考勤汇总', '2025-06-01', '2025-07-01', '2025-08-07 14:12:44', 'admin', '2025-08-07 14:12:44', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_summary` (`summary_id`, `summary_name`, `start_date`, `end_date`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953338714349068289, '2025年8月考勤汇总', '2025-06-01', '2025-07-01', '2025-08-07 14:13:35', 'admin', '2025-08-07 14:13:35', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_summary` (`summary_id`, `summary_name`, `start_date`, `end_date`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953339657471877121, '2025年8月考勤汇总', '2025-06-01', '2025-10-31', '2025-08-07 14:17:20', 'admin', '2025-08-07 14:17:20', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_summary` (`summary_id`, `summary_name`, `start_date`, `end_date`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953340005292957698, '2025年8月考勤汇总', '2025-06-01', '2025-10-31', '2025-08-07 14:18:43', 'admin', '2025-08-07 14:18:43', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_summary` (`summary_id`, `summary_name`, `start_date`, `end_date`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953340284696506370, '2025年8月考勤汇总', '2025-06-01', '2025-10-31', '2025-08-07 14:19:50', 'admin', '2025-08-07 14:19:50', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_summary` (`summary_id`, `summary_name`, `start_date`, `end_date`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953343250069434369, '2025年8月考勤汇总', '2025-06-01', '2025-10-31', '2025-08-07 14:31:37', 'admin', '2025-08-07 14:31:37', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_summary` (`summary_id`, `summary_name`, `start_date`, `end_date`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953353311617527810, '2025年8月考勤汇总', '2025-06-01', '2025-07-01', '2025-08-07 15:11:36', 'admin', '2025-08-07 15:11:36', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_summary` (`summary_id`, `summary_name`, `start_date`, `end_date`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953353470040584193, '2025年8月考勤汇总', '2025-06-01', '2025-07-01', '2025-08-07 15:12:13', 'admin', '2025-08-07 15:12:13', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_summary` (`summary_id`, `summary_name`, `start_date`, `end_date`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953353731643518977, '2025年8月考勤汇总', '2025-06-01', '2025-10-31', '2025-08-07 15:13:16', 'admin', '2025-08-07 15:13:16', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_summary` (`summary_id`, `summary_name`, `start_date`, `end_date`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953353845686644738, '2025年8月考勤汇总', '2025-06-01', '2025-10-31', '2025-08-07 15:13:43', 'admin', '2025-08-07 15:13:43', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_summary` (`summary_id`, `summary_name`, `start_date`, `end_date`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953355687401332738, '2025年8月考勤汇总', '2025-06-01', '2025-10-31', '2025-08-07 15:21:02', 'admin', '2025-08-07 15:21:02', 'admin', 0, '无');
|
||||
INSERT INTO `gear_attendance_summary` (`summary_id`, `summary_name`, `start_date`, `end_date`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (1953643261331357698, '2025年8月前10天', '2025-08-01', '2025-08-10', '2025-08-08 10:23:45', 'admin', '2025-08-08 10:23:45', 'admin', 0, '无');
|
||||
9
script/sql/mysql/item/gear_attendance_summary_detail.sql
Normal file
9
script/sql/mysql/item/gear_attendance_summary_detail.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
INSERT INTO `gear_attendance_summary_detail` (`detail_id`, `summary_id`, `user_id`, `normal_hours`, `overtime_hours`, `travel_hours`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (4, 1953353731643518977, 1, 8.00, 0.00, 0.00, '2025-08-07 07:13:17', 'system', '2025-08-07 07:13:17', NULL, 0, NULL);
|
||||
INSERT INTO `gear_attendance_summary_detail` (`detail_id`, `summary_id`, `user_id`, `normal_hours`, `overtime_hours`, `travel_hours`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (5, 1953353845686644738, 1, 8.00, 0.00, 0.00, '2025-08-07 07:13:44', 'system', '2025-08-07 07:13:44', NULL, 0, NULL);
|
||||
INSERT INTO `gear_attendance_summary_detail` (`detail_id`, `summary_id`, `user_id`, `normal_hours`, `overtime_hours`, `travel_hours`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (6, 1953353845686644738, 1953296510648913922, 64.00, 8.00, 0.00, '2025-08-07 07:13:44', 'system', '2025-08-07 07:13:44', NULL, 0, NULL);
|
||||
INSERT INTO `gear_attendance_summary_detail` (`detail_id`, `summary_id`, `user_id`, `normal_hours`, `overtime_hours`, `travel_hours`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (7, 1953353845686644738, 1953296599563964417, 40.00, 5.00, 0.00, '2025-08-07 07:13:44', 'system', '2025-08-07 07:13:44', NULL, 0, NULL);
|
||||
INSERT INTO `gear_attendance_summary_detail` (`detail_id`, `summary_id`, `user_id`, `normal_hours`, `overtime_hours`, `travel_hours`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (8, 1953355687401332738, 1, 8.00, 0.00, 0.00, '2025-08-07 07:21:04', 'system', '2025-08-07 07:21:04', NULL, 0, NULL);
|
||||
INSERT INTO `gear_attendance_summary_detail` (`detail_id`, `summary_id`, `user_id`, `normal_hours`, `overtime_hours`, `travel_hours`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (9, 1953355687401332738, 1953296510648913922, 64.00, 8.00, 0.00, '2025-08-07 07:21:04', 'system', '2025-08-07 07:21:04', NULL, 0, NULL);
|
||||
INSERT INTO `gear_attendance_summary_detail` (`detail_id`, `summary_id`, `user_id`, `normal_hours`, `overtime_hours`, `travel_hours`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (10, 1953355687401332738, 1953296599563964417, 40.00, 5.00, 0.00, '2025-08-07 07:21:04', 'system', '2025-08-07 07:21:04', NULL, 0, NULL);
|
||||
INSERT INTO `gear_attendance_summary_detail` (`detail_id`, `summary_id`, `user_id`, `normal_hours`, `overtime_hours`, `travel_hours`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (11, 1953643261331357698, 1953296510648913922, 64.00, 8.00, 0.00, '2025-08-08 02:23:45', 'system', '2025-08-08 02:23:45', NULL, 0, NULL);
|
||||
INSERT INTO `gear_attendance_summary_detail` (`detail_id`, `summary_id`, `user_id`, `normal_hours`, `overtime_hours`, `travel_hours`, `create_time`, `create_by`, `update_time`, `update_by`, `del_flag`, `remark`) VALUES (12, 1953643261331357698, 1953296599563964417, 40.00, 5.00, 0.00, '2025-08-08 02:23:45', 'system', '2025-08-08 02:23:45', NULL, 0, NULL);
|
||||
249
script/sql/mysql/item/gear_bom.sql
Normal file
249
script/sql/mysql/item/gear_bom.sql
Normal file
@@ -0,0 +1,249 @@
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1962804412858281985, 'P1756804013781', '产品BOM1756804013781', 1, 0, '2025-09-02 17:06:54', 'admin', '2025-09-02 17:06:54', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1963076285844262913, 'P1756868833269', '产品BOM1756868833269', 1, 0, '2025-09-03 11:07:13', 'admin', '2025-09-03 11:07:13', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1963078628153331714, 'P1756869391835', '产品BOM1756869391835', 1, 0, '2025-09-03 11:16:32', 'admin', '2025-09-03 11:16:32', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1963079313016066049, 'P1756869555110', '产品BOM1756869555110', 1, 0, '2025-09-03 11:19:15', 'admin', '2025-09-03 11:19:15', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1963080824894787585, 'P1756869915513', '产品BOM1756869915513', 1, 0, '2025-09-03 11:25:16', 'admin', '2025-09-19 17:34:05', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1968575717720010753, 'P1758179999884', '产品BOM1758179999884', 1, 0, '2025-09-18 15:20:00', 'admin', '2025-09-18 15:20:00', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1968983435159003138, 'P1758277203380', '产品BOM1758277203380', 1, 0, '2025-09-19 18:20:08', 'admin', '2025-09-19 18:20:08', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1968986220730507266, 'P1758277867537', '产品BOM1758277867537', 1, 0, '2025-09-19 18:31:12', 'admin', '2025-09-19 18:31:12', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969007739091279873, 'P1758282997805', '产品BOM1758282997805', 1, 0, '2025-09-19 19:56:42', 'admin', '2025-09-19 19:56:42', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969009235333734401, 'P1758283354527', '产品BOM1758283354527', 1, 0, '2025-09-19 20:02:39', 'admin', '2025-09-19 20:02:39', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969011377939406849, 'P1758283865358', '产品BOM1758283865358', 1, 0, '2025-09-19 20:11:10', 'admin', '2025-09-19 20:11:10', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969037769360007169, 'P1758290161678', '产品BOM1758290161678', 1, 0, '2025-09-19 21:56:02', 'admin', '2025-09-19 21:56:02', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969216596778409986, 'P1758332796002', '产品BOM1758332796002', 1, 0, '2025-09-20 09:46:38', 'admin', '2025-09-20 09:46:38', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969218663903387649, 'P1758333288799', '产品BOM1758333288799', 1, 0, '2025-09-20 09:54:50', 'admin', '2025-09-20 09:54:50', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969220775144054786, 'P1758333792178', '产品BOM1758333792178', 1, 0, '2025-09-20 10:03:14', 'admin', '2025-09-20 10:03:14', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969222514257682433, 'P1758334206776', '产品BOM1758334206776', 1, 0, '2025-09-20 10:10:08', 'admin', '2025-09-20 10:10:08', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969251946112983042, 'P1758341225341', '产品BOM1758341225341', 1, 0, '2025-09-20 12:07:06', 'admin', '2025-09-20 12:07:06', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969258676075077634, 'P1758342829902', '产品BOM1758342829902', 1, 0, '2025-09-20 12:33:50', 'admin', '2025-09-20 12:33:50', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969260053052497922, 'P1758343158191', '产品BOM1758343158191', 1, 0, '2025-09-20 12:39:18', 'admin', '2025-09-20 12:39:18', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969261424610877441, 'P1758343485190', '产品BOM1758343485190', 1, 0, '2025-09-20 12:44:45', 'admin', '2025-09-20 12:44:45', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969268800189603842, 'P1758345243630', '产品BOM1758345243630', 1, 0, '2025-09-20 13:14:04', 'admin', '2025-09-20 13:14:04', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969270021130526721, 'P1758345534717', '产品BOM1758345534717', 1, 0, '2025-09-20 13:18:55', 'admin', '2025-09-20 13:18:55', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969271048823087106, 'P1758345779686', '产品BOM1758345779686', 1, 0, '2025-09-20 13:23:00', 'admin', '2025-09-20 13:23:00', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969272832018849793, 'P1758346204878', '产品BOM1758346204878', 1, 0, '2025-09-20 13:30:05', 'admin', '2025-09-20 13:30:05', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969273727653748738, 'P1758346418411', '产品BOM1758346418411', 1, 0, '2025-09-20 13:33:39', 'admin', '2025-09-20 13:33:39', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969275101284114433, 'P1758346745902', '产品BOM1758346745902', 1, 0, '2025-09-20 13:39:06', 'admin', '2025-09-20 13:39:06', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969276120260911106, 'P1758346988839', '产品BOM1758346988839', 1, 0, '2025-09-20 13:43:09', 'admin', '2025-09-20 13:43:09', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969292488112840705, 'P1758350891162', '产品BOM1758350891162', 1, 0, '2025-09-20 14:48:12', 'admin', '2025-09-20 14:48:12', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969293682625454082, 'P1758351175950', '产品BOM1758351175950', 1, 0, '2025-09-20 14:52:56', 'admin', '2025-09-20 14:52:56', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969294926278533121, 'P1758351472452', '产品BOM1758351472452', 1, 0, '2025-09-20 14:57:53', 'admin', '2025-09-20 14:57:53', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969296126164049922, 'P1758351758520', '产品BOM1758351758520', 1, 0, '2025-09-20 15:02:39', 'admin', '2025-09-20 15:02:39', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969296943285772289, 'P1758351953330', '产品BOM1758351953330', 1, 0, '2025-09-20 15:05:54', 'admin', '2025-09-20 15:05:54', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969297859237879810, 'P1758352171706', '产品BOM1758352171706', 1, 0, '2025-09-20 15:09:32', 'admin', '2025-09-20 15:09:32', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969299068359254018, 'P1758352459983', '产品BOM1758352459983', 1, 0, '2025-09-20 15:14:20', 'admin', '2025-09-20 15:14:20', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969299987176071169, 'P1758352679039', '产品BOM1758352679039', 1, 0, '2025-09-20 15:17:59', 'admin', '2025-09-20 15:17:59', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969302194772484098, 'P1758353205335', '产品BOM1758353205335', 1, 0, '2025-09-20 15:26:46', 'admin', '2025-09-20 15:26:46', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969303281441153026, 'P1758353464441', '产品BOM1758353464441', 1, 0, '2025-09-20 15:31:05', 'admin', '2025-09-20 15:31:05', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969305424524976130, 'P1758353975382', '产品BOM1758353975382', 1, 0, '2025-09-20 15:39:36', 'admin', '2025-09-20 15:39:36', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969305746374893570, 'P1758354052112', '产品BOM1758354052112', 1, 0, '2025-09-20 15:40:53', 'admin', '2025-09-20 15:40:53', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969306151355916290, 'P1758354148665', '产品BOM1758354148665', 1, 0, '2025-09-20 15:42:29', 'admin', '2025-09-20 15:42:29', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969307184773701634, 'P1758354395047', '产品BOM1758354395047', 1, 0, '2025-09-20 15:46:35', 'admin', '2025-09-20 15:46:35', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969309586151153665, 'P1758354967560', '产品BOM1758354967560', 1, 0, '2025-09-20 15:56:08', 'admin', '2025-09-20 15:56:08', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969310827925184513, 'P1758355263626', '产品BOM1758355263626', 1, 0, '2025-09-20 16:01:04', 'admin', '2025-09-20 16:01:04', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969315958846627841, 'P1758356486908', '产品BOM1758356486908', 1, 0, '2025-09-20 16:21:27', 'admin', '2025-09-20 16:21:27', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969316975764021250, 'P1758356729358', '产品BOM1758356729358', 1, 0, '2025-09-20 16:25:30', 'admin', '2025-09-20 16:25:30', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969318101305499650, 'P1758356997665', '产品BOM1758356997665', 1, 0, '2025-09-20 16:29:58', 'admin', '2025-09-20 16:29:58', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969319367314219010, 'P1758357299532', '产品BOM1758357299532', 1, 0, '2025-09-20 16:35:00', 'admin', '2025-09-20 16:35:00', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969320310344753154, 'P1758357524363', '产品BOM1758357524363', 1, 0, '2025-09-20 16:38:45', 'admin', '2025-09-20 16:38:45', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969321421562683393, 'P1758357789292', '产品BOM1758357789292', 1, 0, '2025-09-20 16:43:10', 'admin', '2025-09-20 16:43:10', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969322308133691394, 'P1758358000665', '产品BOM1758358000665', 1, 0, '2025-09-20 16:46:41', 'admin', '2025-09-20 16:46:41', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969324295218765826, 'P1758358474414', '产品BOM1758358474414', 1, 0, '2025-09-20 16:54:35', 'admin', '2025-09-20 16:54:35', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969325152068935681, 'P1758358678702', '产品BOM1758358678702', 1, 0, '2025-09-20 16:57:59', 'admin', '2025-09-20 16:57:59', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969327042336890881, 'P1758359129367', '产品BOM1758359129367', 1, 0, '2025-09-20 17:05:30', 'admin', '2025-09-20 17:05:30', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969327793788395521, 'P1758359308525', '产品BOM1758359308525', 1, 0, '2025-09-20 17:08:29', 'admin', '2025-09-20 17:08:29', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969328714823999489, 'P1758359528110', '产品BOM1758359528110', 1, 0, '2025-09-20 17:12:09', 'admin', '2025-09-20 17:12:09', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969329920631873537, 'P1758359815598', '产品BOM1758359815598', 1, 0, '2025-09-20 17:16:56', 'admin', '2025-09-20 17:16:56', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969330774357286913, 'P1758360019134', '产品BOM1758360019134', 1, 0, '2025-09-20 17:20:20', 'admin', '2025-09-20 17:20:20', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969332224869244930, 'P1758360364960', '产品BOM1758360364960', 1, 0, '2025-09-20 17:26:05', 'admin', '2025-09-20 17:26:05', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969333457193508865, 'P1758360658761', '产品BOM1758360658761', 1, 0, '2025-09-20 17:30:59', 'admin', '2025-09-20 17:30:59', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969334622090141698, 'P1758360936485', '产品BOM1758360936485', 1, 0, '2025-09-20 17:35:37', 'admin', '2025-09-20 17:35:37', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969335859988635649, 'P1758361231616', '产品BOM1758361231616', 1, 0, '2025-09-20 17:40:32', 'admin', '2025-09-20 17:40:32', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969339393614258178, 'P1758362074082', '产品BOM1758362074082', 1, 0, '2025-09-20 17:54:35', 'admin', '2025-09-20 17:54:35', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969339870116552705, 'P1758362187684', '产品BOM1758362187684', 1, 0, '2025-09-20 17:56:28', 'admin', '2025-09-20 17:56:28', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969340601456369666, 'P1758362362047', '产品BOM1758362362047', 1, 0, '2025-09-20 17:59:23', 'admin', '2025-09-20 17:59:23', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969341324726345730, 'P1758362534484', '产品BOM1758362534484', 1, 0, '2025-09-20 18:02:15', 'admin', '2025-09-20 18:02:15', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969342104887861249, 'P1758362720487', '产品BOM1758362720487', 1, 0, '2025-09-20 18:05:21', 'admin', '2025-09-24 10:10:02', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969342892880142337, 'P1758362908355', '产品BOM1758362908355', 1, 0, '2025-09-20 18:08:29', 'admin', '2025-09-20 18:08:29', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969343542649135106, 'P1758363063272', '产品BOM1758363063272', 1, 0, '2025-09-20 18:11:04', 'admin', '2025-09-20 18:11:04', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969344475802083330, 'P1758363285746', '产品BOM1758363285746', 1, 0, '2025-09-20 18:14:46', 'admin', '2025-09-20 18:14:46', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969347192045936642, 'P1758363933343', '产品BOM1758363933343', 1, 0, '2025-09-20 18:25:34', 'admin', '2025-09-20 18:25:34', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969348489918783490, 'P1758364242773', '产品BOM1758364242773', 1, 0, '2025-09-20 18:30:43', 'admin', '2025-09-20 18:30:43', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969349207262208001, 'P1758364413800', '产品BOM1758364413800', 1, 0, '2025-09-20 18:33:34', 'admin', '2025-09-20 18:33:34', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969349891562905601, 'P1758364576948', '产品BOM1758364576948', 1, 0, '2025-09-20 18:36:18', 'admin', '2025-09-20 18:36:18', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969350503998398465, 'P1758364722959', '产品BOM1758364722959', 1, 0, '2025-09-20 18:38:44', 'admin', '2025-09-20 18:38:44', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969351677350748161, 'P1758365002699', '产品BOM1758365002699', 1, 0, '2025-09-20 18:43:23', 'admin', '2025-09-20 18:43:23', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969352683060961282, 'P1758365242471', '产品BOM1758365242471', 1, 0, '2025-09-20 18:47:23', 'admin', '2025-09-20 18:47:23', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969354084294041601, 'P1758365576542', '产品BOM1758365576542', 1, 0, '2025-09-20 18:52:57', 'admin', '2025-09-20 18:52:57', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969421909079597058, 'P1758381746903', '产品BOM1758381746903', 1, 0, '2025-09-20 23:22:28', 'admin', '2025-09-20 23:22:28', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969422668387033089, 'P1758381927933', '产品BOM1758381927933', 1, 0, '2025-09-20 23:25:29', 'admin', '2025-09-20 23:25:29', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969423468190474241, 'P1758382118615', '产品BOM1758382118615', 1, 0, '2025-09-20 23:28:40', 'admin', '2025-09-20 23:28:40', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969424355084443650, 'P1758382329769', '产品BOM1758382329769', 1, 0, '2025-09-20 23:32:11', 'admin', '2025-09-20 23:32:11', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969599117844783106, 'P1758423996618', '产品BOM1758423996618', 1, 0, '2025-09-21 11:06:38', 'admin', '2025-09-21 11:06:38', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969600329600180225, 'P1758424285520', '产品BOM1758424285520', 1, 0, '2025-09-21 11:11:27', 'admin', '2025-09-21 11:11:27', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969604172316647426, 'P1758425201672', '产品BOM1758425201672', 1, 0, '2025-09-21 11:26:43', 'admin', '2025-09-21 11:26:43', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969605793574526977, 'P1758425588199', '产品BOM1758425588199', 1, 0, '2025-09-21 11:33:09', 'admin', '2025-09-21 11:33:09', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969639760684097537, 'P1758433686351', '产品BOM1758433686351', 1, 0, '2025-09-21 13:48:08', 'admin', '2025-09-21 13:48:08', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969648804987641858, 'P1758435842664', '产品BOM1758435842664', 1, 0, '2025-09-21 14:24:04', 'admin', '2025-09-21 14:24:04', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969654589041909762, 'P1758437221663', '产品BOM1758437221663', 1, 0, '2025-09-21 14:47:03', 'admin', '2025-09-21 14:47:03', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969655844430651393, 'P1758437520963', '产品BOM1758437520963', 1, 0, '2025-09-21 14:52:02', 'admin', '2025-09-21 14:52:02', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969656547018514434, 'P1758437688468', '产品BOM1758437688468', 1, 0, '2025-09-21 14:54:50', 'admin', '2025-09-21 14:54:50', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969657580507602946, 'P1758437934861', '产品BOM1758437934861', 1, 0, '2025-09-21 14:58:56', 'admin', '2025-09-21 14:58:56', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969658278494314497, 'P1758438101274', '产品BOM1758438101274', 1, 0, '2025-09-21 15:01:43', 'admin', '2025-09-21 15:01:43', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969659749319286786, 'P1758438451937', '产品BOM1758438451937', 1, 0, '2025-09-21 15:07:33', 'admin', '2025-09-21 15:07:33', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969660883522002945, 'P1758438722345', '产品BOM1758438722345', 1, 0, '2025-09-21 15:12:04', 'admin', '2025-09-21 15:12:04', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969661689621094402, 'P1758438914528', '产品BOM1758438914528', 1, 0, '2025-09-21 15:15:16', 'admin', '2025-09-21 15:15:16', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969667254288097282, 'P1758440241216', '产品BOM1758440241216', 1, 0, '2025-09-21 15:37:23', 'admin', '2025-09-21 15:37:23', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969668095573204994, 'P1758440441788', '产品BOM1758440441788', 1, 0, '2025-09-21 15:40:43', 'admin', '2025-09-21 15:40:43', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969668852577968129, 'P1758440622269', '产品BOM1758440622269', 1, 0, '2025-09-21 15:43:44', 'admin', '2025-09-21 15:43:44', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969669468343738370, 'P1758440769075', '产品BOM1758440769075', 1, 0, '2025-09-21 15:46:11', 'admin', '2025-09-21 15:46:11', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969670073397256194, 'P1758440913328', '产品BOM1758440913328', 1, 0, '2025-09-21 15:48:35', 'admin', '2025-09-21 15:48:35', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969670576386580482, 'P1758441033247', '产品BOM1758441033247', 1, 0, '2025-09-21 15:50:35', 'admin', '2025-09-21 15:50:35', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969671246753800193, 'P1758441193070', '产品BOM1758441193070', 1, 0, '2025-09-21 15:53:15', 'admin', '2025-09-21 15:53:15', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969671889606385665, 'P1758441346334', '产品BOM1758441346334', 1, 0, '2025-09-21 15:55:48', 'admin', '2025-09-21 15:55:48', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969672762684317698, 'P1758441554483', '产品BOM1758441554483', 1, 0, '2025-09-21 15:59:16', 'admin', '2025-09-21 15:59:16', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969673983038038018, 'P1758441845432', '产品BOM1758441845432', 1, 0, '2025-09-21 16:04:07', 'admin', '2025-09-21 16:04:07', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969674859500773378, 'P1758442054394', '产品BOM1758442054394', 1, 0, '2025-09-21 16:07:36', 'admin', '2025-09-21 16:07:36', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969676147974184961, 'P1758442361560', '产品BOM1758442361560', 1, 0, '2025-09-21 16:12:43', 'admin', '2025-09-21 16:12:43', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969678004050173953, 'P1758442804082', '产品BOM1758442804082', 1, 0, '2025-09-21 16:20:06', 'admin', '2025-09-21 16:20:06', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969678923038957569, 'P1758443023194', '产品BOM1758443023194', 1, 0, '2025-09-21 16:23:45', 'admin', '2025-09-21 16:23:45', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969683854051483649, 'P1758444198813', '产品BOM1758444198813', 1, 0, '2025-09-21 16:43:20', 'admin', '2025-09-21 16:43:20', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969684476960153601, 'P1758444347322', '产品BOM1758444347322', 1, 0, '2025-09-21 16:45:49', 'admin', '2025-09-21 16:45:49', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969685150879948802, 'P1758444507991', '产品BOM1758444507991', 1, 0, '2025-09-21 16:48:30', 'admin', '2025-09-21 16:48:30', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969685746420785153, 'P1758444649975', '产品BOM1758444649975', 1, 0, '2025-09-21 16:50:52', 'admin', '2025-09-21 16:50:52', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969687464231542785, 'P1758445059528', '产品BOM1758445059528', 1, 0, '2025-09-21 16:57:41', 'admin', '2025-09-21 16:57:41', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969697140356653057, 'P1758447366434', '产品BOM1758447366434', 1, 0, '2025-09-21 17:36:08', 'admin', '2025-09-21 17:36:08', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969697753375154178, 'P1758447512585', '产品BOM1758447512585', 1, 0, '2025-09-21 17:38:34', 'admin', '2025-09-21 17:38:34', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969709314160435201, 'P1758450268823', '产品BOM1758450268823', 1, 0, '2025-09-21 18:24:31', 'admin', '2025-09-21 18:24:31', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969714814461648897, 'P1758451580167', '产品BOM1758451580167', 1, 0, '2025-09-21 18:46:22', 'admin', '2025-09-21 18:46:22', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969718858471153666, 'P1758452544311', '产品BOM1758452544311', 1, 0, '2025-09-21 19:02:26', 'admin', '2025-09-21 19:02:26', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969719567895732225, 'P1758452713449', '产品BOM1758452713449', 1, 0, '2025-09-21 19:05:15', 'admin', '2025-09-21 19:05:15', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969720677993783298, 'P1758452978110', '产品BOM1758452978110', 1, 0, '2025-09-21 19:09:40', 'admin', '2025-09-21 19:09:40', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969721416438751233, 'P1758453154163', '产品BOM1758453154163', 1, 0, '2025-09-21 19:12:36', 'admin', '2025-09-21 19:12:36', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969723684936458241, 'P1758453695002', '产品BOM1758453695002', 1, 0, '2025-09-21 19:21:37', 'admin', '2025-09-21 19:21:37', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969729136537608193, 'P1758454994730', '产品BOM1758454994730', 1, 0, '2025-09-21 19:43:17', 'admin', '2025-09-21 19:43:17', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969729891176783874, 'P1758455174650', '产品BOM1758455174650', 1, 0, '2025-09-21 19:46:17', 'admin', '2025-09-21 19:46:17', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969730758001008641, 'P1758455381307', '产品BOM1758455381307', 1, 0, '2025-09-21 19:49:43', 'admin', '2025-09-21 19:49:43', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969731487558246402, 'P1758455555248', '产品BOM1758455555248', 1, 0, '2025-09-21 19:52:37', 'admin', '2025-09-21 19:52:37', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969732274917187586, 'P1758455742960', '产品BOM1758455742960', 1, 0, '2025-09-21 19:55:45', 'admin', '2025-09-21 19:55:45', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969732967858151425, 'P1758455908165', '产品BOM1758455908165', 1, 0, '2025-09-21 19:58:30', 'admin', '2025-09-21 19:58:30', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969743619855196161, 'P1758458447736', '产品BOM1758458447736', 1, 0, '2025-09-21 20:40:50', 'admin', '2025-09-21 20:40:50', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969744214443925506, 'P1758458589494', '产品BOM1758458589494', 1, 0, '2025-09-21 20:43:11', 'admin', '2025-09-21 20:43:11', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969745049185918977, 'P1758458788509', '产品BOM1758458788509', 1, 0, '2025-09-21 20:46:30', 'admin', '2025-09-21 20:46:30', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969745614460657665, 'P1758458923277', '产品BOM1758458923277', 1, 0, '2025-09-21 20:48:45', 'admin', '2025-09-21 20:48:45', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969746361415868417, 'P1758459101360', '产品BOM1758459101360', 1, 0, '2025-09-21 20:51:43', 'admin', '2025-09-21 20:51:43', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969755456743120898, 'P1758461269801', '产品BOM1758461269801', 1, 0, '2025-09-21 21:27:52', 'admin', '2025-09-21 21:27:52', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969762458005381122, 'P1758462938994', '产品BOM1758462938994', 1, 0, '2025-09-21 21:55:41', 'admin', '2025-09-21 21:55:41', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969763289819750401, 'P1758463137309', '产品BOM1758463137309', 1, 0, '2025-09-21 21:58:59', 'admin', '2025-09-21 21:58:59', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969768770843942913, 'P1758464444055', '产品BOM1758464444055', 1, 0, '2025-09-21 22:20:46', 'admin', '2025-09-21 22:20:46', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969772501052399617, 'P1758465333380', '产品BOM1758465333380', 1, 0, '2025-09-21 22:35:36', 'admin', '2025-09-21 22:35:36', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969773576773935106, 'P1758465589842', '产品BOM1758465589842', 1, 0, '2025-09-21 22:39:52', 'admin', '2025-09-21 22:39:52', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969774903805583362, 'P1758465906223', '产品BOM1758465906223', 1, 0, '2025-09-21 22:45:08', 'admin', '2025-09-21 22:45:08', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969776187866587138, 'P1758466212330', '产品BOM1758466212330', 1, 0, '2025-09-21 22:50:15', 'admin', '2025-09-21 22:50:15', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969777317749170178, 'P1758466481734', '产品BOM1758466481734', 1, 0, '2025-09-21 22:54:44', 'admin', '2025-09-21 22:54:44', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969781242216816642, 'P1758467417376', '产品BOM1758467417376', 1, 0, '2025-09-21 23:10:20', 'admin', '2025-09-21 23:10:20', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969783638057787393, 'P1758467988573', '产品BOM1758467988573', 1, 0, '2025-09-21 23:19:51', 'admin', '2025-09-21 23:19:51', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969785247814885378, 'P1758468372335', '产品BOM1758468372335', 1, 0, '2025-09-21 23:26:15', 'admin', '2025-09-21 23:26:15', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969789149700399105, 'P1758469302623', '产品BOM1758469302623', 1, 0, '2025-09-21 23:41:45', 'admin', '2025-09-21 23:41:45', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969789745975238657, 'P1758469444753', '产品BOM1758469444753', 1, 0, '2025-09-21 23:44:07', 'admin', '2025-09-21 23:44:07', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969790576736837633, 'P1758469642846', '产品BOM1758469642846', 1, 0, '2025-09-21 23:47:25', 'admin', '2025-09-21 23:47:25', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969791366884990977, 'P1758469831205', '产品BOM1758469831205', 1, 0, '2025-09-21 23:50:33', 'admin', '2025-09-21 23:50:33', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969956192529653761, 'P1758509128725', '产品BOM1758509128725', 1, 0, '2025-09-22 10:45:31', 'admin', '2025-09-22 10:45:31', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969957375948333058, 'P1758509410875', '产品BOM1758509410875', 1, 0, '2025-09-22 10:50:13', 'admin', '2025-09-22 10:50:13', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969957968318275586, 'P1758509552100', '产品BOM1758509552100', 1, 0, '2025-09-22 10:52:34', 'admin', '2025-09-22 10:52:34', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969958595127648257, 'P1758509701540', '产品BOM1758509701540', 1, 0, '2025-09-22 10:55:04', 'admin', '2025-09-22 10:55:04', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969959334650552322, 'P1758509877851', '产品BOM1758509877851', 1, 0, '2025-09-22 10:58:00', 'admin', '2025-09-22 10:58:00', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969968941892608001, 'P1758512168342', '产品BOM1758512168342', 1, 0, '2025-09-22 11:36:11', 'admin', '2025-09-22 11:36:11', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969969848025849857, 'P1758512384375', '产品BOM1758512384375', 1, 0, '2025-09-22 11:39:47', 'admin', '2025-09-22 11:39:47', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969970253501800449, 'P1758512481045', '产品BOM1758512481045', 1, 0, '2025-09-22 11:41:23', 'admin', '2025-09-22 11:41:23', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969971026562359298, 'P1758512665351', '产品BOM1758512665351', 1, 0, '2025-09-22 11:44:28', 'admin', '2025-09-22 11:44:28', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969971395187154945, 'P1758512753241', '产品BOM1758512753241', 1, 0, '2025-09-22 11:45:56', 'admin', '2025-09-22 11:45:56', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969971793239187458, 'P1758512848139', '产品BOM1758512848139', 1, 0, '2025-09-22 11:47:30', 'admin', '2025-09-22 11:47:30', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969972146215034881, 'P1758512932290', '产品BOM1758512932290', 1, 0, '2025-09-22 11:48:55', 'admin', '2025-09-22 11:48:55', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969972623245811713, 'P1758513046021', '产品BOM1758513046021', 1, 0, '2025-09-22 11:50:48', 'admin', '2025-09-22 11:50:48', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969973546986741761, 'P1758513266251', '产品BOM1758513266251', 1, 0, '2025-09-22 11:54:29', 'admin', '2025-09-22 11:54:29', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969974591829811201, 'P1758513515356', '产品BOM1758513515356', 1, 0, '2025-09-22 11:58:38', 'admin', '2025-09-22 11:58:38', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969975560420433922, 'P1758513746280', '产品BOM1758513746280', 1, 0, '2025-09-22 12:02:29', 'admin', '2025-09-22 12:02:29', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969976402057863170, 'P1758513946938', '产品BOM1758513946938', 1, 0, '2025-09-22 12:05:49', 'admin', '2025-09-22 12:05:49', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969977209574629378, 'P1758514139460', '产品BOM1758514139460', 1, 0, '2025-09-22 12:09:02', 'admin', '2025-09-22 12:09:02', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969980280547549186, 'P1758514871618', '产品BOM1758514871618', 1, 0, '2025-09-22 12:21:14', 'admin', '2025-09-22 12:21:14', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969992490502037505, 'P1758517782625', '产品BOM1758517782625', 1, 0, '2025-09-22 13:09:45', 'admin', '2025-09-22 13:09:45', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969993196109799425, 'P1758517950850', '产品BOM1758517950850', 1, 0, '2025-09-22 13:12:33', 'admin', '2025-09-22 13:12:33', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969993881140305922, 'P1758518114170', '产品BOM1758518114170', 1, 0, '2025-09-22 13:15:17', 'admin', '2025-09-22 13:15:17', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969994683711987714, 'P1758518305514', '产品BOM1758518305514', 1, 0, '2025-09-22 13:18:28', 'admin', '2025-09-22 13:18:28', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969996731207622658, 'P1758518793665', '产品BOM1758518793665', 1, 0, '2025-09-22 13:26:36', 'admin', '2025-09-22 13:26:36', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969997584480051202, 'P1758518997097', '产品BOM1758518997097', 1, 0, '2025-09-22 13:30:00', 'admin', '2025-09-22 13:30:00', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969998576277757954, 'P1758519233554', '产品BOM1758519233554', 1, 0, '2025-09-22 13:33:56', 'admin', '2025-09-22 13:33:56', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969999857251753986, 'P1758519538951', '产品BOM1758519538951', 1, 0, '2025-09-22 13:39:01', 'admin', '2025-09-22 13:39:01', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970000700466241538, 'P1758519739988', '产品BOM1758519739988', 1, 0, '2025-09-22 13:42:22', 'admin', '2025-09-22 13:42:22', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970002221828382722, 'P1758520102699', '产品BOM1758520102699', 1, 0, '2025-09-22 13:48:25', 'admin', '2025-09-22 13:48:25', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970002897413316609, 'P1758520263770', '产品BOM1758520263770', 1, 0, '2025-09-22 13:51:06', 'admin', '2025-09-22 13:51:06', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970004375452491778, 'P1758520616146', '产品BOM1758520616146', 1, 0, '2025-09-22 13:56:59', 'admin', '2025-09-22 13:56:59', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970012343887699970, 'P1758522515920', '产品BOM1758522515920', 1, 0, '2025-09-22 14:28:38', 'admin', '2025-09-22 14:28:38', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970021248634167297, 'P1758524638926', '产品BOM1758524638926', 1, 0, '2025-09-22 15:04:02', 'admin', '2025-09-22 15:04:02', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970023047487266818, 'P1758525067795', '产品BOM1758525067795', 1, 0, '2025-09-22 15:11:10', 'admin', '2025-09-22 15:11:10', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970027100879429634, 'P1758526034160', '产品BOM1758526034160', 1, 0, '2025-09-22 15:27:17', 'admin', '2025-09-22 15:27:17', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970028917927419906, 'P1758526467378', '产品BOM1758526467378', 1, 0, '2025-09-22 15:34:30', 'admin', '2025-09-22 15:34:30', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970029674735050753, 'P1758526647803', '产品BOM1758526647803', 1, 0, '2025-09-22 15:37:30', 'admin', '2025-09-22 15:37:30', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970033732845805569, 'P1758527615310', '产品BOM1758527615310', 1, 0, '2025-09-22 15:53:38', 'admin', '2025-09-22 15:53:38', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970037936104644610, 'P1758528617375', '产品BOM1758528617375', 1, 0, '2025-09-22 16:10:20', 'admin', '2025-09-22 16:10:20', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970041310816477185, 'P1758529421991', '产品BOM1758529421991', 1, 0, '2025-09-22 16:23:45', 'admin', '2025-09-22 16:23:45', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970042090592116737, 'P1758529607905', '产品BOM1758529607905', 1, 0, '2025-09-22 16:26:51', 'admin', '2025-09-22 16:26:51', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970042637965565954, 'P1758529738405', '产品BOM1758529738405', 1, 0, '2025-09-22 16:29:01', 'admin', '2025-09-22 16:29:01', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970043389756809217, 'P1758529917640', '产品BOM1758529917640', 1, 0, '2025-09-22 16:32:00', 'admin', '2025-09-22 16:32:00', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970044394204536834, 'P1758530157113', '产品BOM1758530157113', 1, 0, '2025-09-22 16:36:00', 'admin', '2025-09-22 16:36:00', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970045154078203905, 'P1758530338276', '产品BOM1758530338276', 1, 0, '2025-09-22 16:39:01', 'admin', '2025-09-22 16:39:01', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970045978841948162, 'P1758530534909', '产品BOM1758530534909', 1, 0, '2025-09-22 16:42:18', 'admin', '2025-09-22 16:42:18', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970046870290931713, 'P1758530747444', '产品BOM1758530747444', 1, 0, '2025-09-22 16:45:50', 'admin', '2025-09-22 16:45:50', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970047620505116674, 'P1758530926302', '产品BOM1758530926302', 1, 0, '2025-09-22 16:48:49', 'admin', '2025-09-22 16:48:49', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970048203609841665, 'P1758531065324', '产品BOM1758531065324', 1, 0, '2025-09-22 16:51:08', 'admin', '2025-09-22 16:51:08', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970051086556307457, 'P1758531752652', '产品BOM1758531752652', 1, 0, '2025-09-22 17:02:35', 'admin', '2025-09-22 17:02:35', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970093029623148546, 'P1758541752402', '产品BOM1758541752402', 1, 0, '2025-09-22 19:49:15', 'admin', '2025-09-22 19:49:15', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970093897256873986, 'P1758541959262', '产品BOM1758541959262', 1, 0, '2025-09-22 19:52:42', 'admin', '2025-09-22 19:52:42', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970099134256459777, 'P1758543207833', '产品BOM1758543207833', 1, 0, '2025-09-22 20:13:31', 'admin', '2025-09-22 20:13:31', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970105980014899202, 'P1758544843032', '产品BOM1758544843032', 1, 0, '2025-09-22 20:40:43', 'admin', '2025-09-22 20:40:43', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970107544813252609, 'P1758545216099', '产品BOM1758545216099', 1, 0, '2025-09-22 20:46:56', 'admin', '2025-09-22 20:46:56', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970114556485775362, 'P1758546887765', '产品BOM1758546887765', 1, 0, '2025-09-22 21:14:48', 'admin', '2025-09-22 21:14:48', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970141350081409025, 'P1758553275693', '产品BOM1758553275693', 1, 0, '2025-09-22 23:01:16', 'admin', '2025-09-22 23:01:16', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970147640161677314, 'P1758554775326', '产品BOM1758554775326', 1, 0, '2025-09-22 23:26:16', 'admin', '2025-09-22 23:26:16', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970148385783099393, 'P1758554953095', '产品BOM1758554953095', 1, 0, '2025-09-22 23:29:13', 'admin', '2025-09-22 23:29:13', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970149959569846274, 'P1758555328308', '产品BOM1758555328308', 1, 0, '2025-09-22 23:35:29', 'admin', '2025-09-22 23:35:29', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970150786200055810, 'P1758555525385', '产品BOM1758555525385', 1, 0, '2025-09-22 23:38:46', 'admin', '2025-09-22 23:38:46', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970152105002479618, 'P1758555839807', '产品BOM1758555839807', 1, 0, '2025-09-22 23:44:00', 'admin', '2025-09-22 23:44:00', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970320756351512577, 'P1758596048645', '产品BOM1758596048645', 1, 0, '2025-09-23 10:54:10', 'admin', '2025-09-23 10:54:10', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970321724216520705, 'P1758596279400', '产品BOM1758596279400', 1, 0, '2025-09-23 10:58:01', 'admin', '2025-09-23 10:58:01', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970322821106708482, 'P1758596540912', '产品BOM1758596540912', 1, 0, '2025-09-23 11:02:22', 'admin', '2025-09-23 11:02:22', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970323256001507330, 'P1758596644595', '产品BOM1758596644595', 1, 0, '2025-09-23 11:04:06', 'admin', '2025-09-23 11:04:06', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970323703529549825, 'P1758596751291', '产品BOM1758596751291', 1, 0, '2025-09-23 11:05:52', 'admin', '2025-09-23 11:05:52', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970324297761763329, 'P1758596892962', '产品BOM1758596892962', 1, 0, '2025-09-23 11:08:14', 'admin', '2025-09-23 11:08:14', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970324838759870466, 'P1758597021939', '产品BOM1758597021939', 1, 0, '2025-09-23 11:10:23', 'admin', '2025-09-23 11:10:23', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970325832952524801, 'P1758597258966', '产品BOM1758597258966', 1, 0, '2025-09-23 11:14:20', 'admin', '2025-09-23 11:14:20', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970326594034151425, 'P1758597440425', '产品BOM1758597440425', 1, 0, '2025-09-23 11:17:22', 'admin', '2025-09-23 11:17:22', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970327341702393858, 'P1758597618679', '产品BOM1758597618679', 1, 0, '2025-09-23 11:20:20', 'admin', '2025-09-23 11:20:20', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970328043954712577, 'P1758597786104', '产品BOM1758597786104', 1, 0, '2025-09-23 11:23:07', 'admin', '2025-09-23 11:23:07', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970329049530707970, 'P1758598025845', '产品BOM1758598025845', 1, 0, '2025-09-23 11:27:07', 'admin', '2025-09-23 11:27:07', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970329895458910209, 'P1758598227528', '产品BOM1758598227528', 1, 0, '2025-09-23 11:30:29', 'admin', '2025-09-23 11:30:29', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970330695056830466, 'P1758598418161', '产品BOM1758598418161', 1, 0, '2025-09-23 11:33:39', 'admin', '2025-09-23 11:33:39', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970331277247197185, 'P1758598556961', '产品BOM1758598556961', 1, 0, '2025-09-23 11:35:58', 'admin', '2025-09-23 11:35:58', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970331972503416833, 'P1758598722719', '产品BOM1758598722719', 1, 0, '2025-09-23 11:38:44', 'admin', '2025-09-23 11:38:44', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970332689217695745, 'P1758598893595', '产品BOM1758598893595', 1, 0, '2025-09-23 11:41:35', 'admin', '2025-09-23 11:41:35', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970333493966221314, 'P1758599085455', '产品BOM1758599085455', 1, 0, '2025-09-23 11:44:47', 'admin', '2025-09-23 11:44:47', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970334310291025921, 'P1758599280077', '产品BOM1758599280077', 1, 0, '2025-09-23 11:48:01', 'admin', '2025-09-23 11:48:01', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970334987025199106, 'P1758599441421', '产品BOM1758599441421', 1, 0, '2025-09-23 11:50:43', 'admin', '2025-09-23 11:50:43', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970357687143706625, 'P1758604853437', '产品BOM1758604853437', 1, 0, '2025-09-23 13:20:55', 'admin', '2025-09-23 13:20:55', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970358461705826305, 'P1758605038104', '产品BOM1758605038104', 1, 0, '2025-09-23 13:23:59', 'admin', '2025-09-23 13:23:59', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970359036623269890, 'P1758605175173', '产品BOM1758605175173', 1, 0, '2025-09-23 13:26:16', 'admin', '2025-09-23 13:26:16', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970360042497060866, 'P1758605414988', '产品BOM1758605414988', 1, 0, '2025-09-23 13:30:16', 'admin', '2025-09-23 13:30:16', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970360738248208385, 'P1758605580863', '产品BOM1758605580863', 1, 0, '2025-09-23 13:33:02', 'admin', '2025-09-23 13:33:02', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970361261059813378, 'P1758605705510', '产品BOM1758605705510', 1, 0, '2025-09-23 13:35:07', 'admin', '2025-09-23 13:35:07', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970361834987401218, 'P1758605842338', '产品BOM1758605842338', 1, 0, '2025-09-23 13:37:24', 'admin', '2025-09-23 13:37:24', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970367200479490050, 'P1758607121544', '产品BOM1758607121544', 1, 0, '2025-09-23 13:58:43', 'admin', '2025-09-23 13:58:43', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970371468120895490, 'P1758608139010', '产品BOM1758608139010', 1, 0, '2025-09-23 14:15:40', 'admin', '2025-09-23 14:15:40', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970373149739003905, 'P1758608539929', '产品BOM1758608539929', 1, 0, '2025-09-23 14:22:21', 'admin', '2025-09-23 14:22:21', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970377244034019329, 'P1758609516061', '产品BOM1758609516061', 1, 0, '2025-09-23 14:38:37', 'admin', '2025-09-23 14:38:37', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970378839551455233, 'P1758609896452', '产品BOM1758609896452', 1, 0, '2025-09-23 14:44:58', 'admin', '2025-09-23 14:44:58', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970379842946412546, 'P1758610135675', '产品BOM1758610135675', 1, 0, '2025-09-23 14:48:57', 'admin', '2025-09-23 14:48:57', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970380491658440705, 'P1758610290337', '产品BOM1758610290337', 1, 0, '2025-09-23 14:51:32', 'admin', '2025-09-24 17:46:45', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970381392804655106, 'P1758610505182', '产品BOM1758610505182', 1, 0, '2025-09-23 14:55:07', 'admin', '2025-09-23 14:55:07', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970382586746843137, 'P1758610789835', '产品BOM1758610789835', 1, 0, '2025-09-23 14:59:51', 'admin', '2025-09-23 14:59:51', 'admin', NULL);
|
||||
INSERT INTO `gear_bom` (`bom_id`, `bom_code`, `bom_name`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970382950753710082, 'P1758610876618', '产品BOM1758610876618', 1, 0, '2025-09-23 15:01:18', 'admin', '2025-09-23 15:01:18', 'admin', NULL);
|
||||
2442
script/sql/mysql/item/gear_bom_item.sql
Normal file
2442
script/sql/mysql/item/gear_bom_item.sql
Normal file
File diff suppressed because it is too large
Load Diff
9
script/sql/mysql/item/gear_customer.sql
Normal file
9
script/sql/mysql/item/gear_customer.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
INSERT INTO `gear_customer` (`customer_id`, `name`, `follow_up_status`, `contact_last_time`, `contact_last_content`, `contact_next_time`, `owner_user_id`, `owner_time`, `deal_status`, `mobile`, `telephone`, `qq`, `wechat`, `email`, `area_id`, `detail_address`, `industry_id`, `level`, `source`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (2, '张三', 2, '2024-08-20 09:15:00', '确认订单细节', '2024-08-25 15:30:00', 1002, '2024-08-10 11:00:00', 0, '13987654321', '', '87654321', 'wx876543', 'zhangsan@example.com', 310000, '上海市浦东新区某某路123号', 5, 3, 2, '首次咨询,意向购买小型设备', 'sales1', '2025-09-02 09:03:05', 'sales1', '2025-09-21 08:19:51', 2);
|
||||
INSERT INTO `gear_customer` (`customer_id`, `name`, `follow_up_status`, `contact_last_time`, `contact_last_content`, `contact_next_time`, `owner_user_id`, `owner_time`, `deal_status`, `mobile`, `telephone`, `qq`, `wechat`, `email`, `area_id`, `detail_address`, `industry_id`, `level`, `source`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (3, '广州某某贸易公司', 0, '2024-07-30 16:45:00', '洽谈代理合作方案', '2024-09-10 14:00:00', 1003, '2024-06-15 10:30:00', 2, '13611223344', '020-56789012', '34567890', 'wx345678', 'trade@example.com', 440100, '广州市天河区某某街道56号', 2, 1, 3, '区域经销商,月采购量较大', 'manager', '2025-09-02 09:03:05', 'manager', '2025-09-21 08:19:51', 2);
|
||||
INSERT INTO `gear_customer` (`customer_id`, `name`, `follow_up_status`, `contact_last_time`, `contact_last_content`, `contact_next_time`, `owner_user_id`, `owner_time`, `deal_status`, `mobile`, `telephone`, `qq`, `wechat`, `email`, `area_id`, `detail_address`, `industry_id`, `level`, `source`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (1001, '北京某某科技有限公司', 1, '2024-08-15 14:30:00', '沟通产品采购需求', '2024-09-05 10:00:00', 1001, '2024-07-01 09:00:00', 1, '13812345678', '010-87654321', '12345678', 'wx123456', 'contact@example.com', 110000, '北京市朝阳区某某大厦A座1001室', 3, 2, 1, '长期合作客户,主要采购办公设备', 'admin', '2025-09-02 09:03:05', 'admin', '2025-09-21 08:19:51', 2);
|
||||
INSERT INTO `gear_customer` (`customer_id`, `name`, `follow_up_status`, `contact_last_time`, `contact_last_content`, `contact_next_time`, `owner_user_id`, `owner_time`, `deal_status`, `mobile`, `telephone`, `qq`, `wechat`, `email`, `area_id`, `detail_address`, `industry_id`, `level`, `source`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (1969678019124502530, '荣林海(线下)', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'admin', '2025-09-21 16:20:09', 'admin', '2025-09-21 16:20:09', 0);
|
||||
INSERT INTO `gear_customer` (`customer_id`, `name`, `follow_up_status`, `contact_last_time`, `contact_last_content`, `contact_next_time`, `owner_user_id`, `owner_time`, `deal_status`, `mobile`, `telephone`, `qq`, `wechat`, `email`, `area_id`, `detail_address`, `industry_id`, `level`, `source`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (1969678062254530562, '荣林海(线上)', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'admin', '2025-09-21 16:20:20', 'admin', '2025-09-21 16:20:29', 0);
|
||||
INSERT INTO `gear_customer` (`customer_id`, `name`, `follow_up_status`, `contact_last_time`, `contact_last_content`, `contact_next_time`, `owner_user_id`, `owner_time`, `deal_status`, `mobile`, `telephone`, `qq`, `wechat`, `email`, `area_id`, `detail_address`, `industry_id`, `level`, `source`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (1969678239266742273, '永凯', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'admin', '2025-09-21 16:21:02', 'admin', '2025-09-21 16:21:02', 0);
|
||||
INSERT INTO `gear_customer` (`customer_id`, `name`, `follow_up_status`, `contact_last_time`, `contact_last_content`, `contact_next_time`, `owner_user_id`, `owner_time`, `deal_status`, `mobile`, `telephone`, `qq`, `wechat`, `email`, `area_id`, `detail_address`, `industry_id`, `level`, `source`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (1969678272468852737, '何家堡', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'admin', '2025-09-21 16:21:10', 'admin', '2025-09-21 16:21:10', 0);
|
||||
INSERT INTO `gear_customer` (`customer_id`, `name`, `follow_up_status`, `contact_last_time`, `contact_last_content`, `contact_next_time`, `owner_user_id`, `owner_time`, `deal_status`, `mobile`, `telephone`, `qq`, `wechat`, `email`, `area_id`, `detail_address`, `industry_id`, `level`, `source`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (1969678312755142658, '天津智杰国际经贸有限公司', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'admin', '2025-09-21 16:21:19', 'admin', '2025-09-21 16:21:19', 0);
|
||||
INSERT INTO `gear_customer` (`customer_id`, `name`, `follow_up_status`, `contact_last_time`, `contact_last_content`, `contact_next_time`, `owner_user_id`, `owner_time`, `deal_status`, `mobile`, `telephone`, `qq`, `wechat`, `email`, `area_id`, `detail_address`, `industry_id`, `level`, `source`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (1969678354182283265, '张凯(院内)', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'admin', '2025-09-21 16:21:29', 'admin', '2025-09-21 16:21:29', 0);
|
||||
9
script/sql/mysql/item/gear_journal.sql
Normal file
9
script/sql/mysql/item/gear_journal.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
INSERT INTO `gear_journal` (`journal_id`, `journal_date`, `summary`, `trans_type`, `counterpart`, `income_amount`, `expense_amount`, `balance_amount`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (1962810939908382721, '2025-09-02', '客户付款', '收入', '广州某某贸易公司', 40.00, 0.00, 40.00, '应收款ID: 1962801507648450561', 'admin', '2025-09-02 17:32:50', 'admin', '2025-09-20 10:12:26', 2);
|
||||
INSERT INTO `gear_journal` (`journal_id`, `journal_date`, `summary`, `trans_type`, `counterpart`, `income_amount`, `expense_amount`, `balance_amount`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (1962811176030920705, '2025-09-02', '向供应商付款', '支出', '恒信耗材批发', 0.00, 40.00, 0.00, '应付款ID: 1962811017117130753', 'admin', '2025-09-02 17:33:46', 'admin', '2025-09-20 10:12:26', 2);
|
||||
INSERT INTO `gear_journal` (`journal_id`, `journal_date`, `summary`, `trans_type`, `counterpart`, `income_amount`, `expense_amount`, `balance_amount`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (1968150086630375425, '2025-09-17', '向供应商付款', '支出', '恒信耗材批发', 0.00, 9960.00, -9960.00, '应付款ID: 1962811017117130753', 'admin', '2025-09-17 11:08:42', 'admin', '2025-09-20 10:12:26', 2);
|
||||
INSERT INTO `gear_journal` (`journal_id`, `journal_date`, `summary`, `trans_type`, `counterpart`, `income_amount`, `expense_amount`, `balance_amount`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (1968179026119733250, '2025-09-17', '客户付款', '收入', '广州某某贸易公司', 9960.00, 0.00, 0.00, '应收款ID: 1962801507648450561', 'admin', '2025-09-17 13:03:41', 'admin', '2025-09-20 10:12:26', 2);
|
||||
INSERT INTO `gear_journal` (`journal_id`, `journal_date`, `summary`, `trans_type`, `counterpart`, `income_amount`, `expense_amount`, `balance_amount`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (1970052748957790210, '2025-09-22', '向供应商付款', '支出', '博城喷涂', 0.00, 100.00, -100.00, '应付款ID: 1969999296908271617', 'admin', '2025-09-22 17:09:12', 'admin', '2025-09-22 17:09:12', 0);
|
||||
INSERT INTO `gear_journal` (`journal_id`, `journal_date`, `summary`, `trans_type`, `counterpart`, `income_amount`, `expense_amount`, `balance_amount`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (2043621287314690050, '2026-04-13', '向供应商付款', '公户转出', '林海', 0.00, 80000.00, -80100.00, NULL, 'test_user', '2026-04-13 17:24:18', 'test_user', '2026-04-14 05:47:12', 2);
|
||||
INSERT INTO `gear_journal` (`journal_id`, `journal_date`, `summary`, `trans_type`, `counterpart`, `income_amount`, `expense_amount`, `balance_amount`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (2043623731989942273, '2026-04-13', '付纸箱款', '支出', '昌禹智能', 0.00, 100000.00, -180100.00, NULL, 'test_user', '2026-04-13 17:34:01', 'test_user', '2026-04-13 09:36:39', 2);
|
||||
INSERT INTO `gear_journal` (`journal_id`, `journal_date`, `summary`, `trans_type`, `counterpart`, `income_amount`, `expense_amount`, `balance_amount`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (2043929344162762754, '2026-04-01', '拉姆枪1把', '支出', '二哥', 0.00, 1500.00, -1600.00, NULL, 'koulintong', '2026-04-14 13:48:25', 'koulintong', '2026-04-14 05:51:45', 2);
|
||||
INSERT INTO `gear_journal` (`journal_id`, `journal_date`, `summary`, `trans_type`, `counterpart`, `income_amount`, `expense_amount`, `balance_amount`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`) VALUES (2043930011333922817, '2026-04-01', '公户转出', '支出', '玉宾', 0.00, 200000.00, -201600.00, NULL, 'koulintong', '2026-04-14 13:51:04', 'koulintong', '2026-04-14 05:51:45', 2);
|
||||
10
script/sql/mysql/item/gear_monthly_account.sql
Normal file
10
script/sql/mysql/item/gear_monthly_account.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
INSERT INTO `gear_monthly_account` (`account_id`, `month_year`, `total_amount`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (1, '2023-01', 156800.00, '1月份采购总金额', 0, '2025-08-30 08:35:14', 'admin', '2025-08-30 08:35:14', 'admin');
|
||||
INSERT INTO `gear_monthly_account` (`account_id`, `month_year`, `total_amount`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2, '2023-02', 125300.50, '2月份采购总金额', 0, '2025-08-30 08:35:14', 'admin', '2025-08-30 08:35:14', 'admin');
|
||||
INSERT INTO `gear_monthly_account` (`account_id`, `month_year`, `total_amount`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (3, '2023-03', 189250.75, '3月份采购总金额', 0, '2025-08-30 08:35:14', 'admin', '2025-08-30 08:35:14', 'admin');
|
||||
INSERT INTO `gear_monthly_account` (`account_id`, `month_year`, `total_amount`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (4, '2023-04', 210500.00, '4月份采购总金额', 0, '2025-08-30 08:35:14', 'admin', '2025-08-30 08:35:14', 'admin');
|
||||
INSERT INTO `gear_monthly_account` (`account_id`, `month_year`, `total_amount`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (5, '2023-05', 178600.25, '5月份采购总金额', 0, '2025-08-30 08:35:14', 'admin', '2025-08-30 08:35:14', 'admin');
|
||||
INSERT INTO `gear_monthly_account` (`account_id`, `month_year`, `total_amount`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (6, '2023-06', 205400.80, '6月份采购总金额', 0, '2025-08-30 08:35:14', 'admin', '2025-08-30 08:35:14', 'admin');
|
||||
INSERT INTO `gear_monthly_account` (`account_id`, `month_year`, `total_amount`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (7, '2023-07', 198750.50, '7月份采购总金额', 0, '2025-08-30 08:35:14', 'admin', '2025-08-30 08:35:14', 'admin');
|
||||
INSERT INTO `gear_monthly_account` (`account_id`, `month_year`, `total_amount`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (8, '2023-08', 220300.00, '8月份采购总金额', 0, '2025-08-30 08:35:14', 'admin', '2025-08-30 08:35:14', 'admin');
|
||||
INSERT INTO `gear_monthly_account` (`account_id`, `month_year`, `total_amount`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (9, '2023-09', 165800.30, '9月份采购总金额', 0, '2025-08-30 08:35:14', 'admin', '2025-08-30 08:35:14', 'admin');
|
||||
INSERT INTO `gear_monthly_account` (`account_id`, `month_year`, `total_amount`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (10, '2023-10', 142600.75, '10月份采购总金额', 0, '2025-08-30 08:35:14', 'admin', '2025-08-30 08:35:14', 'admin');
|
||||
7
script/sql/mysql/item/gear_order.sql
Normal file
7
script/sql/mysql/item/gear_order.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
INSERT INTO `gear_order` (`order_id`, `order_code`, `customer_id`, `company`, `sales_manager`, `order_status`, `trade_type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `tax_amount`, `no_tax_amount`) VALUES (1962786656976941057, 'order-0001', 3, NULL, '小刘', 0, 0, NULL, 2, '2025-09-02 15:56:20', 'admin', '2025-09-21 08:21:42', 'admin', 30000.00, 20000.00);
|
||||
INSERT INTO `gear_order` (`order_id`, `order_code`, `customer_id`, `company`, `sales_manager`, `order_status`, `trade_type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `tax_amount`, `no_tax_amount`) VALUES (1962787074691870721, 'order-0002', 3, NULL, '小高', 0, 0, NULL, 2, '2025-09-02 15:58:00', 'admin', '2025-09-21 08:21:44', 'admin', 30000.00, 20000.00);
|
||||
INSERT INTO `gear_order` (`order_id`, `order_code`, `customer_id`, `company`, `sales_manager`, `order_status`, `trade_type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `tax_amount`, `no_tax_amount`) VALUES (1963528895374110722, 'order-0003', 3, NULL, '小狗', 0, 0, NULL, 2, '2025-09-04 17:05:44', 'admin', '2025-09-21 08:21:46', 'admin', 0.00, 0.00);
|
||||
INSERT INTO `gear_order` (`order_id`, `order_code`, `customer_id`, `company`, `sales_manager`, `order_status`, `trade_type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `tax_amount`, `no_tax_amount`) VALUES (1963528985572618242, 'order-0004', 1001, NULL, '小薰', 0, 0, NULL, 2, '2025-09-04 17:06:05', 'admin', '2025-09-21 08:21:48', 'admin', 0.00, 0.00);
|
||||
INSERT INTO `gear_order` (`order_id`, `order_code`, `customer_id`, `company`, `sales_manager`, `order_status`, `trade_type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `tax_amount`, `no_tax_amount`) VALUES (1969678625578917890, 'XHD20250921001', 1969678354182283265, NULL, '杨玉宾', 0, 0, NULL, 2, '2025-09-21 16:22:34', 'admin', '2025-10-24 02:10:31', 'admin', 100.00, 95.00);
|
||||
INSERT INTO `gear_order` (`order_id`, `order_code`, `customer_id`, `company`, `sales_manager`, `order_status`, `trade_type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `tax_amount`, `no_tax_amount`) VALUES (1969681541471641601, 'CG20250921002', 1969678354182283265, 1, '陆永强', 1, 0, NULL, 0, '2025-09-21 16:34:09', 'admin', '2025-11-06 19:11:01', 'admin', 200.00, 190.00);
|
||||
INSERT INTO `gear_order` (`order_id`, `order_code`, `customer_id`, `company`, `sales_manager`, `order_status`, `trade_type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `tax_amount`, `no_tax_amount`) VALUES (1983080427778830337, '1', 1969678019124502530, 2, '1', 1, 0, '1', 2, '2025-10-28 15:56:32', 'admin', '2025-10-28 07:57:50', 'admin', 0.00, 0.00);
|
||||
2
script/sql/mysql/item/gear_order_detail.sql
Normal file
2
script/sql/mysql/item/gear_order_detail.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
INSERT INTO `gear_order_detail` (`detail_id`, `order_id`, `product_id`, `quantity`, `unit`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `tax_price`, `no_tax_price`) VALUES (1969678738716073985, 1969678625578917890, 1968980240353452033, 2, '把', NULL, 0, '2025-09-21 16:23:01', 'admin', '2025-09-21 16:23:01', 'admin', 50.00, 42.50);
|
||||
INSERT INTO `gear_order_detail` (`detail_id`, `order_id`, `product_id`, `quantity`, `unit`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `tax_price`, `no_tax_price`) VALUES (1969681649453998081, 1969681541471641601, 1969037749772607489, 2, '个', NULL, 0, '2025-09-21 16:34:35', 'admin', '2025-09-21 16:34:35', 'admin', 100.00, 95.00);
|
||||
19
script/sql/mysql/item/gear_other_income.sql
Normal file
19
script/sql/mysql/item/gear_other_income.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (1963054926447632386, '2025-09-12', '随机收入', 100.00, '彩票', 0, '11', 2, '2025-09-03 09:42:21', 'admin', '2025-09-21 05:07:43', 'admin');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (1970696052839100417, '2025-09-24', '1111', 1111.00, '1111', 0, '1111', 2, '2025-09-24 11:45:27', 'admin', '2025-09-24 03:49:08', 'admin');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043930839104983042, '2026-04-01', '二哥', 1500.00, '垫付', 1, '拉姆枪1把', 0, '2026-04-14 13:54:21', 'koulintong', '2026-04-14 13:54:21', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043931517034532866, '2026-04-01', '玉宾', 65000.00, '垫付', 1, '吉奥插排定金', 0, '2026-04-14 13:57:03', 'koulintong', '2026-04-14 13:57:03', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043932050348675074, '2026-04-01', '玉宾', 70000.00, '垫付', 1, '广泰插排', 0, '2026-04-14 13:59:10', 'koulintong', '2026-04-14 13:59:10', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043935949293981697, '2026-04-01', '二子', 40.00, '垫付', 1, NULL, 0, '2026-04-14 14:14:39', 'koulintong', '2026-04-14 14:14:39', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043936059918749698, '2026-04-01', '二子', 154.00, '垫付', 1, NULL, 0, '2026-04-14 14:15:06', 'koulintong', '2026-04-14 14:15:06', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043941233500459009, '2026-04-02', '二哥', 2174.00, '垫付', 1, '宏利刀具', 0, '2026-04-14 14:35:39', 'koulintong', '2026-04-14 14:35:39', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043941402308612097, '2026-04-02', '玉宾', 800.00, '垫付', 1, '云途充值', 0, '2026-04-14 14:36:20', 'koulintong', '2026-04-14 14:36:20', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043941530725617666, '2026-04-02', '二哥', 90.00, '垫付', 1, '正大五金', 0, '2026-04-14 14:36:50', 'koulintong', '2026-04-14 14:36:50', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043941693749825537, '2026-04-02', '玉宾', 27913.00, '垫付', 1, '元启智罚款', 0, '2026-04-14 14:37:29', 'koulintong', '2026-04-14 14:37:29', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043944504000614401, '2026-04-02', '二哥', 100.00, '垫付', 1, '水卡', 0, '2026-04-14 14:48:39', 'koulintong', '2026-04-14 14:48:39', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043944662402699265, '2026-04-02', '二哥', 450.00, '垫付', 1, '振泉塑料', 0, '2026-04-14 14:49:17', 'koulintong', '2026-04-14 14:49:17', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043944777364377601, '2026-04-02', '二子', 114.00, '垫付', 1, '加班订饭', 0, '2026-04-14 14:49:44', 'koulintong', '2026-04-14 14:49:44', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043944872927399938, '2026-04-03', '二子', 54.00, '垫付', 1, NULL, 0, '2026-04-14 14:50:07', 'koulintong', '2026-04-14 14:53:00', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043945382132682754, '2026-04-03', '二子', 3000.00, '垫付', 1, '拉手', 0, '2026-04-14 14:52:08', 'koulintong', '2026-04-14 14:53:07', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043945550970195969, '2026-04-03', '二子', 240.00, '垫付', 1, '宏利刀具', 0, '2026-04-14 14:52:49', 'koulintong', '2026-04-14 14:53:13', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043946019805302786, '2026-04-03', '二哥', 1170.00, '垫付', 1, '振华脚轮', 0, '2026-04-14 14:54:40', 'koulintong', '2026-04-14 14:54:40', 'koulintong');
|
||||
INSERT INTO `gear_other_income` (`other_income_id`, `income_date`, `income_type`, `amount`, `source`, `type`, `remark`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (2043947490839990274, '2026-04-03', '二哥', 192.00, '垫付', 1, '金龙', 0, '2026-04-14 15:00:31', 'koulintong', '2026-04-14 15:00:31', 'koulintong');
|
||||
3
script/sql/mysql/item/gear_payable.sql
Normal file
3
script/sql/mysql/item/gear_payable.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
INSERT INTO `gear_payable` (`payable_id`, `supplier_id`, `order_id`, `detail_id`, `due_date`, `amount`, `paid_amount`, `balance_amount`, `status`, `del_flag`, `remark`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (1962811017117130753, 4, NULL, NULL, '2025-09-18', 10000.00, 10000.00, 0.00, '已结清', 2, NULL, '2025-09-02 17:33:08', 'admin', '2025-09-20 10:12:18', 'admin');
|
||||
INSERT INTO `gear_payable` (`payable_id`, `supplier_id`, `order_id`, `detail_id`, `due_date`, `amount`, `paid_amount`, `balance_amount`, `status`, `del_flag`, `remark`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (1969959428543037442, 1969339606936559617, NULL, 1969959132584558594, '2025-09-27', 400.00, 0.00, 400.00, '未结清', 2, NULL, '2025-09-22 10:58:23', 'admin', '2025-09-22 05:28:54', 'admin');
|
||||
INSERT INTO `gear_payable` (`payable_id`, `supplier_id`, `order_id`, `detail_id`, `due_date`, `amount`, `paid_amount`, `balance_amount`, `status`, `del_flag`, `remark`, `create_time`, `create_by`, `update_time`, `update_by`) VALUES (1969999296908271617, 1969339817851330561, 1969678625578917890, 1969959132584558594, '2025-09-19', 100.00, 100.00, 0.00, '已结清', 0, '1', '2025-09-22 13:36:48', 'admin', '2025-09-22 17:09:12', 'admin');
|
||||
246
script/sql/mysql/item/gear_product.sql
Normal file
246
script/sql/mysql/item/gear_product.sql
Normal file
@@ -0,0 +1,246 @@
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1962798889162240002, 1962789703820029954, 'product-0001', '产品1', '1', 'g', 1963080824894787585, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/17/13343327c41e479694d3d788197e8ef6.png', '1963088123910799362', 1, 2, '2025-09-02 16:44:57', 'admin', '2025-09-19 09:44:02', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1962805110488522754, 1962725099714682881, 'product-0003', '产品3', '11', 'g', 1968575717720010753, 'product', NULL, NULL, 1, 2, '2025-09-02 17:09:40', 'admin', '2025-09-19 09:44:02', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1968980240353452033, 1962789703820029954, 'XHD-SF-1', '懒人摇椅A款-绿', '杨', NULL, 1968983435159003138, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/19/bfd04b1b4ab94d3a81fa7b0f18a66a18.png', '', 1, 0, '2025-09-19 18:07:26', 'admin', '2025-09-19 18:20:08', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1968985884674482178, 1962789703820029954, 'XHD-SF-2', '懒人摇椅A款-白', '杨', NULL, 1968986220730507266, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/19/9a69e64b117a48a4bb8c394d43055bdb.png', '', 1, 0, '2025-09-19 18:29:52', 'admin', '2025-09-19 18:31:12', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969007713526996994, 1962789703820029954, 'XHD-SF-3', '懒人摇椅B款-绿', '杨', NULL, 1969007739091279873, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/19/c421473561644298b5a36116481e0c5d.png', '', 1, 0, '2025-09-19 19:56:36', 'admin', '2025-09-19 19:56:42', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969009219064029185, 1962789703820029954, 'XHD-SF-4', '懒人摇椅B款-白', '杨', NULL, 1969009235333734401, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/19/ef02e54cfb0341c5ace38bf1093ea7ed.png', '', 1, 0, '2025-09-19 20:02:35', 'admin', '2025-09-19 20:02:39', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969011358607859714, 1962789703820029954, 'XHD-SF-5', '懒人摇椅C款-白', '杨', NULL, 1969011377939406849, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/19/07e7a300ab7d48b3a768aeaa557646a2.png', '', 1, 0, '2025-09-19 20:11:05', 'admin', '2025-09-19 20:11:10', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969037749772607489, 1962789703820029954, 'XHD-B-8', '摇椅', '杨', NULL, 1969037769360007169, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/19/4ced5ea471dc4cafa215694e8f7cca26.jpg', '', 1, 0, '2025-09-19 21:55:57', 'admin', '2025-09-19 21:56:02', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969216321527209986, 1962725043158687745, 'XHD-B-15', '电脑桌', '杨', NULL, 1969216596778409986, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/ecb2f1cc2c9542348807a4edb61bb5fb.png', '1969216555984609281', 1, 0, '2025-09-20 09:45:32', 'admin', '2025-09-20 13:29:26', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969218278329409538, 1962725043158687745, 'XHD-B-17', '电脑桌', '杨', NULL, 1969218663903387649, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/f7e56b1921a042c3964433affa259694.png', '', 1, 0, '2025-09-20 09:53:19', 'admin', '2025-09-20 09:54:51', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969220236570255361, 1962725043158687745, 'XHD-B-20', '电脑桌', '杨', NULL, 1969220775144054786, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/54162ea3b55f455cb6b22a5b556381db.png', '1969220749663657986', 1, 0, '2025-09-20 10:01:05', 'admin', '2025-09-20 13:29:42', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969222239056814081, 1962725043158687745, 'XHD-B-22', '电脑桌', '杨', NULL, 1969222514257682433, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/fb884d3963ca4d0caffc3ea8f09c7d21.png', '', 1, 0, '2025-09-20 10:09:03', 'admin', '2025-09-20 10:10:09', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969224117274533890, 1962725043158687745, 'XHD-B-30', '电脑桌', '杨', NULL, 1969251946112983042, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/0802d68dfc9d44a4b893ee5c01884fd0.png', '', 1, 0, '2025-09-20 10:16:31', 'admin', '2025-09-20 12:07:06', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969258532676018177, 1962725043158687745, 'XHD-B-31', '电脑桌', '杨', NULL, 1969258676075077634, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/020fd7a0413546ef9e887be1b3b80769.png', '', 1, 0, '2025-09-20 12:33:16', 'admin', '2025-09-20 12:33:50', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969259883854274562, 1962725043158687745, 'XHD-B-35', '电脑桌', '杨', NULL, 1969260053052497922, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/b3110eb504d24947baed342c192d05c0.png', '', 1, 0, '2025-09-20 12:38:38', 'admin', '2025-09-20 12:39:19', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969261332222943234, 1962725043158687745, 'XHD-B-37', '电脑桌', '杨', NULL, 1969261424610877441, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/e17ca6a7f43343779dd77bb21b26ba2e.png', '1969261396353851393', 1, 0, '2025-09-20 12:44:23', 'admin', '2025-09-20 12:44:46', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969268628621598722, 1962725043158687745, 'XHD-B-62', '电脑桌', '杨', NULL, 1969268800189603842, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/de9c7f18c13e4bd6ba3d434843d15182.png', '', 1, 0, '2025-09-20 13:13:23', 'admin', '2025-09-20 13:14:04', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969269838305009665, 1962725043158687745, 'XHD-B-67', '电脑桌', '杨', NULL, 1969270021130526721, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/b6285008696f41e5b21d3e4b4f2dc581.png', '', 1, 0, '2025-09-20 13:18:11', 'admin', '2025-09-20 13:18:55', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969270938739384322, 1962725043158687745, 'XHD-B-82', '电脑桌', '杨', NULL, 1969271048823087106, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/8457960ca97a4cb0998d6a3286d5c527.png', '', 1, 0, '2025-09-20 13:22:34', 'admin', '2025-09-20 13:23:00', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969272359534698497, 1962725043158687745, 'XHD-B-93', '办公桌', '杨', NULL, 1969272832018849793, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/ea1ec57a52f24194b4021eb49a2d39ac.png', '1969272431680921602', 1, 0, '2025-09-20 13:28:12', 'admin', '2025-09-20 13:30:05', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969273645927735297, 1962725043158687745, 'XHD-B-100', '电脑桌', '杨', NULL, 1969273727653748738, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/38aa61e4a8054e099a9a8bb74fa6c81e.png', '1969273711270797314', 1, 0, '2025-09-20 13:33:19', 'admin', '2025-09-20 13:33:39', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969274785423663106, 1962725043158687745, 'XHD-B-101', '电脑桌', '杨', NULL, 1969275101284114433, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/7382d386bb25442b840bf550b266e79c.png', '1969275079838638082', 1, 0, '2025-09-20 13:37:51', 'admin', '2025-09-20 13:39:06', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969276012328886274, 1962725043158687745, 'XHD-B-102', '电脑桌', '杨', NULL, 1969276120260911106, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/9b7c407b6b4a472088fec609370fc7c6.png', '1969276094084259842', 1, 0, '2025-09-20 13:42:43', 'admin', '2025-09-20 13:43:09', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969282422198476801, 1962725043158687745, 'XHD-B-103', '电脑桌', '杨', NULL, 1969292488112840705, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/74b92bed46874deab4502dfcf0b96869.jpg', '1969282503370842113', 1, 0, '2025-09-20 14:08:12', 'admin', '2025-09-23 15:45:00', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969293549867343873, 1962725043158687745, 'XHD-B-104', '电脑桌', '杨', NULL, 1969293682625454082, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/963dea39ee00401eb6ac5e38329f527a.jpg', '', 1, 0, '2025-09-20 14:52:25', 'admin', '2025-09-24 10:06:02', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969294780316753922, 1962725043158687745, 'XHD-B-139', '电脑桌', '杨', NULL, 1969294926278533121, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/c992f1a45331497b89d58e15a89258a5.jpg', '1969294902320668674', 1, 0, '2025-09-20 14:57:18', 'admin', '2025-09-24 10:06:38', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969296076914532353, 1962725043158687745, 'XHD-B-140', '电脑桌', '杨', NULL, 1969296126164049922, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/a576e40e379c4191b8355a1be85f9692.jpg', '1969296107910438913', 1, 0, '2025-09-20 15:02:27', 'admin', '2025-09-24 10:07:56', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969296896351510530, 1962725043158687745, 'XHD-B-143', '电脑桌', '杨', NULL, 1969296943285772289, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/95e5a873d7774046bdf9e06b99f26e71.jpg', '1969296923518017538', 1, 0, '2025-09-20 15:05:43', 'admin', '2025-09-24 10:34:20', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969297711279611905, 1962725043158687745, 'XHD-B-148', '电脑桌', '杨', NULL, 1969297859237879810, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/00123e2d15a44e01964ce18dec5b849f.jpg', '', 1, 0, '2025-09-20 15:08:57', 'admin', '2025-09-24 10:35:07', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969298939342462977, 1962725043158687745, 'XHD-B-149', '电脑桌', '杨', NULL, 1969299068359254018, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/b0253792b5eb47199534e5497fb4c897.jpg', '', 1, 0, '2025-09-20 15:13:50', 'admin', '2025-09-24 10:54:32', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969299887938838529, 1962725043158687745, 'XHD-B-150', '电脑桌', '杨', NULL, 1969299987176071169, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/63c5b5b0155c40848d236944da3b02b0.jpg', '', 1, 0, '2025-09-20 15:17:36', 'admin', '2025-09-24 11:03:04', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969300876397879298, 1962725043158687745, 'XHD-B-151', '电脑桌', '杨', NULL, 1969302194772484098, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/b273b8d371954b698ecf4f141ed2ddf4.jpg', '1969305174276022273', 1, 0, '2025-09-20 15:21:31', 'admin', '2025-09-24 11:03:34', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969303127917043713, 1962725043158687745, 'XHD-B-167', '电脑桌', '杨', NULL, 1969303281441153026, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/8d28eb2fd66c4981a325184d94db9f67.jpg', '1969303262914912258', 1, 0, '2025-09-20 15:30:28', 'admin', '2025-09-24 11:04:56', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969305295344607234, 1962725043158687745, 'XHD-B-172', '电脑桌', '杨', NULL, 1969305424524976130, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/58ad613ca3c941d6a4ee03c5a2c9c6b0.jpg', '', 1, 0, '2025-09-20 15:39:05', 'admin', '2025-09-24 11:05:23', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969305648186236929, 1962725043158687745, 'XHD-B-173', '电脑桌', '杨', NULL, 1969305746374893570, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/22a4987a520248918b830d2214ecb60b.jpg', '', 1, 0, '2025-09-20 15:40:29', 'admin', '2025-09-24 11:05:54', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969306001992556546, 1962725043158687745, 'XHD-B-189', '电竞桌', '杨', NULL, 1969306151355916290, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/3372503e453a42209362fba839635768.jpg', '', 1, 0, '2025-09-20 15:41:53', 'admin', '2025-09-24 11:06:25', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969307102955413506, 1962725099714682881, 'XHD-B-3', '置物架', '杨', NULL, 1969307184773701634, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/2f31e41f20434cd78e717086f1a2f34d.png', '1969307168751460353', 1, 0, '2025-09-20 15:46:16', 'admin', '2025-09-20 15:46:36', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969309424360071170, 1962725099714682881, 'XHD-B-4', '置物架', '杨', NULL, 1969309586151153665, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/52378ff91c204ac6b7a934c35a16ee78.jpg', '', 1, 0, '2025-09-20 15:55:29', 'admin', '2025-09-20 15:56:08', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969310698908393474, 1962725099714682881, 'XHD-B-5', '置物架', '杨', NULL, 1969310827925184513, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/7ba24cd311e145a5888a3654e1b7894f.jpg', '', 1, 0, '2025-09-20 16:00:33', 'admin', '2025-09-20 16:01:04', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969315896292777985, 1962725099714682881, 'XHD-B-6', '置物架', '杨', NULL, 1969315958846627841, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/9886520fd8b94c789cdf7c9dd8a3e0f9.jpg', '1969315944099454977', 1, 0, '2025-09-20 16:21:12', 'admin', '2025-09-20 16:21:28', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969316905912082433, 1962725099714682881, 'XHD-B-14', '置物架', '杨', NULL, 1969316975764021250, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/b5058b1c5951440f8dec42b44dfb09ca.jpg', '1969316960433840129', 1, 0, '2025-09-20 16:25:13', 'admin', '2025-09-20 16:25:30', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969317794928369665, 1962725099714682881, 'XHD-B-19', '置物架', '杨', NULL, 1969318101305499650, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/432cfa699d924baa9106a46da6e60003.jpg', '', 1, 0, '2025-09-20 16:28:45', 'admin', '2025-09-20 16:29:58', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969319045686599682, 1962725099714682881, 'XHD-B-25', '置物架', '杨', NULL, 1969319367314219010, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/e131a26d7108452d92e9be9e27c1a9bf.jpg', '', 1, 0, '2025-09-20 16:33:43', 'admin', '2025-09-20 16:35:00', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969320185727787009, 1962725099714682881, 'XHD-B-27', '置物架', '杨', NULL, 1969320310344753154, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/c75f3e524f3244bbac704cea0d89df32.jpg', '', 1, 0, '2025-09-20 16:38:15', 'admin', '2025-09-20 16:38:45', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969321294227808258, 1962725099714682881, 'XHD-B-32', '置物架', '杨', NULL, 1969321421562683393, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/6f162f0261144201bbab911fea362d9f.jpg', '', 1, 0, '2025-09-20 16:42:39', 'admin', '2025-09-20 16:43:10', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969322174096318466, 1962725099714682881, 'XHD-B-33', '置物架', '杨', NULL, 1969322308133691394, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/aeaacd77f39849d3a0f923b71f65fd08.jpg', '1969322282879787010', 1, 0, '2025-09-20 16:46:09', 'admin', '2025-09-20 16:46:41', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969324218165207041, 1962725099714682881, 'XHD-B-38', '置物架', '杨', NULL, 1969324295218765826, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/9612ddcc629b46d98e30c5b62ca2a433.jpg', '1969324279355908098', 1, 0, '2025-09-20 16:54:17', 'admin', '2025-09-20 16:54:35', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969325084653887489, 1962725099714682881, 'XHD-B-61', '置物架', '杨', NULL, 1969325152068935681, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/112be3600b7d4c0aabfeb71333175737.jpg', '1969325137212710914', 1, 0, '2025-09-20 16:57:43', 'admin', '2025-09-20 16:57:59', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969326954592051202, 1962725099714682881, 'XHD-B-63', '置物架', '杨', NULL, 1969327042336890881, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/d20486df3c7442a7a56f44325c41b018.jpg', '', 1, 0, '2025-09-20 17:05:09', 'admin', '2025-09-20 17:05:30', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969327641660989441, 1962725099714682881, 'XHD-B-66', '置物架', '杨', NULL, 1969327793788395521, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/5f21da56f85d4b319f998a8fb9ba11ed.jpg', '', 1, 0, '2025-09-20 17:07:53', 'admin', '2025-09-20 17:08:29', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969328607261073410, 1962725099714682881, 'XHD-B-72', '置物架', '杨', NULL, 1969328714823999489, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/87d5b683505c4ca19770ed10b85fcdbe.jpg', '', 1, 0, '2025-09-20 17:11:43', 'admin', '2025-09-20 17:12:09', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969329311098839041, 1962725099714682881, 'XHD-B-76', '置物架', '杨', NULL, 1969329920631873537, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/4072ce3cbaab4b97b334869c88a4191c.jpg', '', 1, 0, '2025-09-20 17:14:31', 'admin', '2025-09-20 17:16:56', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969330626872975362, 1962725099714682881, 'XHD-B-79', '冰箱层架', '杨', NULL, 1969330774357286913, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/67e48c947fb64cdfbb84c9dc085a16b4.jpg', '', 1, 0, '2025-09-20 17:19:44', 'admin', '2025-09-20 17:20:20', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969332066458771457, 1962725099714682881, 'XHD-B-80', '置物架', '杨', NULL, 1969332224869244930, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/c31cd685b94b4fd7abda429675707c30.jpg', '1969332205801938945', 1, 0, '2025-09-20 17:25:28', 'admin', '2025-09-20 17:26:06', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969333357247438849, 1962725099714682881, 'XHD-B-81', '置物桌 ', '杨', NULL, 1969333457193508865, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/577aeff804a7466891d83e61a2b26bfd.jpg', '', 1, 0, '2025-09-20 17:30:35', 'admin', '2025-09-20 17:31:00', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969334491726979073, 1962725099714682881, 'XHD-B-83', '上墙置物架', '杨', NULL, 1969334622090141698, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/7436412d4117422b876c752bfad81eae.jpg', '', 1, 0, '2025-09-20 17:35:06', 'admin', '2025-09-20 17:35:37', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969335771455266818, 1962725099714682881, 'XHD-B-84', '上墙置物架', '杨', NULL, 1969335859988635649, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/002edece20004feabbb2578b0af85c47.jpg', '', 1, 0, '2025-09-20 17:40:11', 'admin', '2025-09-20 17:40:32', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969339290124001282, 1962725099714682881, 'XHD-B-89', '微波炉架', '杨', NULL, 1969339393614258178, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/09e0774e70ab43c9a45d62919021404f.jpg', '', 1, 0, '2025-09-20 17:54:10', 'admin', '2025-09-20 17:54:35', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969339775656632322, 1962725099714682881, 'XHD-B-90', '置物架', '杨', NULL, 1969339870116552705, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/b18cbb08e769485f9bde575885f3bbf6.jpg', '', 1, 0, '2025-09-20 17:56:06', 'admin', '2025-09-20 17:56:29', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969340529549221889, 1962725099714682881, 'XHD-B-94', '置物架', '杨', NULL, 1969340601456369666, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/63f3ffcb949849d589c7942207f5910b.jpg', '1969340583269867521', 1, 0, '2025-09-20 17:59:05', 'admin', '2025-09-20 17:59:23', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969341260901621762, 1962725099714682881, 'XHD-B-95', '置物架', '杨', NULL, 1969341324726345730, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/4dc9a85652c74a2f896d49e8bfcf58fe.jpg', '1969341310222442498', 1, 0, '2025-09-20 18:02:00', 'admin', '2025-09-20 18:02:15', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969342049636294658, 1962725099714682881, 'XHD-B-96', '置物架', '杨', NULL, 1969342104887861249, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/42913b5cc1274ee1b95abde8a54a6467.jpg', '1969342091344453633', 1, 0, '2025-09-20 18:05:08', 'admin', '2025-09-20 18:05:21', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969342787686998018, 1962725099714682881, 'XHD-B-105', '上墙置物架', '杨', NULL, 1969342892880142337, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/ab4ffa2fd6b44a5faefad90bd842f3c6.jpg', '', 1, 0, '2025-09-20 18:08:04', 'admin', '2025-09-20 18:08:29', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969343490845286401, 1962725099714682881, 'XHD-B-106', '上墙置物架', '杨', NULL, 1969343542649135106, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/8da0de0af9304c92b2df9cce3c6b8a3e.jpg', '1969343529609043970', 1, 0, '2025-09-20 18:10:52', 'admin', '2025-09-20 18:11:04', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969344425218777090, 1962725099714682881, 'XHD-B-107', '上墙置物架', '杨', NULL, 1969344475802083330, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/31de398968674809baaa00bc3f6253ab.jpg', '1969344461071687681,1969347890145894402', 1, 0, '2025-09-20 18:14:34', 'admin', '2025-09-20 18:28:22', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969347065633808386, 1962725099714682881, 'XHD-B-108', '角落置物架', '杨', NULL, 1969347192045936642, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/9ac9773efa9344259c06fb2c80dc3d43.jpg', '1969347173876211714', 1, 0, '2025-09-20 18:25:04', 'admin', '2025-09-20 18:25:34', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969348433706721282, 1962725099714682881, 'XHD-B-110', '置物架', '杨', NULL, 1969348489918783490, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/3299e322827f4622ab4c30e2a1b7b764.jpg', '1969348472860549122', 1, 0, '2025-09-20 18:30:30', 'admin', '2025-09-24 11:25:42', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969349146872619010, 1962725099714682881, 'XHD-B-111', '置物架', '杨', NULL, 1969349207262208001, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/6fc1a98694ad4a138ef716642a1b0818.jpg', '1969349193286787073', 1, 0, '2025-09-20 18:33:20', 'admin', '2025-09-24 11:27:33', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969349836768518145, 1962725099714682881, 'XHD-B-112', '置物架', '杨', NULL, 1969349891562905601, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/e27a9ada0d8c487dad1918af41997246.jpg', '1969349877868503042', 1, 0, '2025-09-20 18:36:04', 'admin', '2025-09-24 11:29:57', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969350457986883585, 1962725099714682881, 'XHD-B-113', '置物架', '杨', NULL, 1969350503998398465, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/de285ed3634a45a39f1b22d95cce0e9f.jpg', '1969350488852766721', 1, 0, '2025-09-20 18:38:33', 'admin', '2025-09-24 11:31:33', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969351516587270145, 1962725099714682881, 'XHD-B-130', '置物架', '杨', NULL, 1969351677350748161, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/dbac2672c8114df6ad19da5e9059fe2d.jpg', '1969351661961846785', 1, 0, '2025-09-20 18:42:45', 'admin', '2025-09-20 18:49:10', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969352583827922946, 1962725099714682881, 'XHD-B-134', '拱形书架', '杨', NULL, 1969352683060961282, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/e3ac751fbc13423bb50123fa9c1d2223.jpg', '1969352667076468737', 1, 0, '2025-09-20 18:46:59', 'admin', '2025-09-20 18:47:23', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969354006158352385, 1962725099714682881, 'XHD-B-135', '置物架', '杨', NULL, 1969354084294041601, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/ac3a12f7ffcc41d082c4e24da2fd024b.jpg', '1969354069081300994', 1, 0, '2025-09-20 18:52:39', 'admin', '2025-09-20 23:21:18', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969421778980675586, 1962725099714682881, 'XHD-B-136', '置物架', '杨', NULL, 1969421909079597058, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/0e31b14d230a427f822af58852d658f7.jpg', '1969421843983998977', 1, 0, '2025-09-20 23:21:57', 'admin', '2025-09-20 23:22:28', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969422534802644993, 1962725099714682881, 'XHD-B-152', '手推车', '杨', NULL, 1969422668387033089, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/e97f1823c2c74df8b6c1acd73d619490.jpg', '', 1, 0, '2025-09-20 23:24:57', 'admin', '2025-09-20 23:25:29', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969423347453239298, 1962725099714682881, 'XHD-B-153', '置物架', '杨', NULL, 1969423468190474241, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/4f4a2ad0520f4de1a419af49e96dd9ce.jpg', '', 1, 0, '2025-09-20 23:28:11', 'admin', '2025-09-20 23:28:40', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969424153082568705, 1962725099714682881, 'XHD-B-177', '高边柜', '杨', NULL, 1969424355084443650, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/20/cd0eea2a94e14168b5f6faa73bc97277.png', '', 1, 0, '2025-09-20 23:31:23', 'admin', '2025-09-20 23:32:11', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969599016518787074, 1962725156170014722, 'XHD-B-52', '小边桌', '杨', NULL, 1969599117844783106, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/cb13842d387d436c9be3b78c9d0ac089.jpg', '', 1, 0, '2025-09-21 11:06:14', 'admin', '2025-09-21 11:06:38', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969600268128460801, 1962725156170014722, 'XHD-B-53', '边条小边桌', '杨', NULL, 1969600329600180225, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/42f326b70a354c56b90d5dfbc5058f6a.jpg', '1969600316157435906', 1, 0, '2025-09-21 11:11:12', 'admin', '2025-09-21 11:11:27', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969604116826005506, 1962725156170014722, 'XHD-B-54', '两块板小边桌', '杨', NULL, 1969604172316647426, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/2fa409fd82df46589e63b1baec8b9404.jpg', '1969604156818694146', 1, 0, '2025-09-21 11:26:30', 'admin', '2025-09-21 11:26:43', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969605698103779330, 1962725156170014722, 'XHD-B-69', '边桌', '杨', NULL, 1969605793574526977, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/ddaa59bda2ad4b2ebdc3704fbe2a0bf7.jpg', '', 1, 0, '2025-09-21 11:32:47', 'admin', '2025-09-21 11:33:10', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969634227457597441, 1962725156170014722, 'XHD-B-70', '边桌', '杨', NULL, 1969639760684097537, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/4f0c50d0b6d8449b8df84ed137d985d5.jpg', '', 1, 0, '2025-09-21 13:26:09', 'admin', '2025-09-24 11:32:17', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969648674095996930, 1962725156170014722, 'XHD-B-74', '边桌', '杨', NULL, 1969648804987641858, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/623b82688d794c589577c3ab411f48ec.jpg', '', 1, 0, '2025-09-21 14:23:33', 'admin', '2025-09-21 14:24:04', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969654535413538818, 1962725156170014722, 'XHD-B-77', '小边桌', '杨', NULL, 1969654589041909762, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/7486ed9386f544dd9614ec8d329cb883.jpg', '1969654573673979905', 1, 0, '2025-09-21 14:46:50', 'admin', '2025-09-21 14:47:03', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969655768178204674, 1962725156170014722, 'XHD-B-115', '组合小桌子', '杨', NULL, 1969655844430651393, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/9544bb7aebdf4842ae2645dbdaf84393.jpg', '1969655827254976513', 1, 0, '2025-09-21 14:51:44', 'admin', '2025-09-21 14:52:03', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969656478911406081, 1962725156170014722, 'XHD-B-116', '小桌子', '杨', NULL, 1969656547018514434, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/1d4902432bee4f988e972e9cf84aa3e7.jpg', '1969656532241981441', 1, 0, '2025-09-21 14:54:34', 'admin', '2025-09-21 14:54:50', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969657300680417281, 1970383698254180354, 'XHD-B-120', '带电带灯带2抽屉 窄边桌', '杨', NULL, 1969657580507602946, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/dab416034dab4816bd66023369b942d7.jpg', '', 1, 0, '2025-09-21 14:57:50', 'admin', '2025-09-23 15:19:38', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969658191760302082, 1970383698254180354, 'XHD-B-121', '带电带灯带3抽屉 窄边桌', '杨', NULL, 1969658278494314497, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/410581d9e600451495bb6ce4764b16a2.jpg', '', 1, 0, '2025-09-21 15:01:22', 'admin', '2025-09-23 15:22:53', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969659730004516866, 1962725156170014722, 'XHD-B-001', '单腿升降电脑桌', '杨', NULL, 1969659749319286786, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/bbdf8048b1094275b29973f8dff932e8.jpg', '', 1, 0, '2025-09-21 15:07:29', 'admin', '2025-09-21 16:02:42', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969660850399584258, 1962725156170014722, 'XHD-B-002', '双腿升降电脑桌', '杨', NULL, 1969660883522002945, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/4c8b6dcd8cac4bd3b55aa231672ceac6.jpg', '', 1, 0, '2025-09-21 15:11:56', 'admin', '2025-09-21 16:02:53', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969661547895562242, 1962725156170014722, 'XHD-B-178', '边桌', '杨', NULL, 1969661689621094402, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/85cfc31970ab440b9743289474c1989e.jpg', '', 1, 0, '2025-09-21 15:14:42', 'admin', '2025-09-24 11:34:07', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969667113263013889, 1968972604094537730, 'XHD-B-16', '电视柜', '杨', NULL, 1969667254288097282, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/1660f0b0cefd4f7f87661aed7df98bbb.jpg', '', 1, 0, '2025-09-21 15:36:49', 'admin', '2025-09-21 15:37:23', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969667984285736962, 1968972604094537730, 'XHD-B-18', '电视柜', '杨', NULL, 1969668095573204994, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/d81782a0e364441a8410f3dbcfdf0d00.jpg', '', 1, 0, '2025-09-21 15:40:17', 'admin', '2025-09-21 15:40:44', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969668773951545345, 1968972604094537730, 'XHD-B-21', '电视柜', '杨', NULL, 1969668852577968129, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/50e9ad6b63284e46afe4bbb00093c51b.jpg', '', 1, 0, '2025-09-21 15:43:25', 'admin', '2025-09-21 15:43:44', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969669404976193537, 1968972604094537730, 'XHD-B-129', '电视柜', '杨', NULL, 1969669468343738370, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/cbc69af105124f55b73f70717e386448.jpg', '1969669455005851650', 1, 0, '2025-09-21 15:45:55', 'admin', '2025-09-21 15:46:11', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969669964848668674, 1968972604094537730, 'XHD-B-145', '电视柜', '杨', NULL, 1969670073397256194, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/de119e3d08a14d298918330ac5106831.jpg', '1969670056599068673', 1, 0, '2025-09-21 15:48:09', 'admin', '2025-09-21 15:48:35', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969670491846189057, 1968972604094537730, 'XHD-B-168', '电视柜', '杨', NULL, 1969670576386580482, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/db854e4838004dbcbaa19cd3f2b5008c.jpg', '1969670560792158209', 1, 0, '2025-09-21 15:50:15', 'admin', '2025-09-21 15:50:35', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969671169234673666, 1968972604094537730, 'XHD-B-170', '电视柜', '杨', NULL, 1969671246753800193, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/92ec1938cbe44160822e66199ec36ae5.jpg', '1969671229565542401', 1, 0, '2025-09-21 15:52:56', 'admin', '2025-09-21 15:53:15', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969671769812869122, 1968972604094537730, 'XHD-B-175', '电视柜', '杨', NULL, 1969671889606385665, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/4e5a600f56e346f59e3f3e94adc0584f.jpg', '1969671875677102082', 1, 0, '2025-09-21 15:55:19', 'admin', '2025-09-21 15:55:48', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969672683244199937, 1968972778376257537, 'XHD-B-7', '边几', '杨', NULL, 1969672762684317698, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/faee578314154282b87c15c517ae9348.jpg', '', 1, 0, '2025-09-21 15:58:57', 'admin', '2025-09-21 15:59:16', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969673851018125313, 1970383698254180354, 'XHD-B-123', 'C型边几', '杨', NULL, 1969673983038038018, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/622ad48ae78347b69736f2dfa6027d90.jpg', '', 1, 0, '2025-09-21 16:03:36', 'admin', '2025-09-23 15:28:18', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969674735076745217, 1970383698254180354, 'XHD-B-124', 'C型边几', '杨', NULL, 1969674859500773378, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/e28220d3520f4c4f8aae0cab3d99b795.jpg', '', 1, 0, '2025-09-21 16:07:06', 'admin', '2025-09-23 15:30:38', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969675638223642626, 1970383698254180354, 'XHD-B-125', '带电带不带 C型边几', '杨', NULL, 1969676147974184961, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/54bfba8135de47c280fb62020e0f3f3c.jpg', '', 1, 0, '2025-09-21 16:10:42', 'admin', '2025-09-23 15:32:55', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969677977244377090, 1968972778376257537, 'XHD-B-003', '边几', '杨', NULL, 1969678004050173953, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/e62bd647e42e45b1b463327663e695fc.jpg', '', 1, 0, '2025-09-21 16:19:59', 'admin', '2025-09-21 16:20:06', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969678848531341314, 1968972778376257537, 'XHD-B-004', '边几', '杨', NULL, 1969678923038957569, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/19f693a24264492fbcf5ab5118c510fb.jpg', '', 1, 0, '2025-09-21 16:23:27', 'admin', '2025-09-21 16:23:45', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969683828323622914, 1968972778376257537, 'XHD-B-005', '边几', '杨', NULL, 1969683854051483649, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/889ae5574a714745ba254ad129c28b50.jpg', '', 1, 0, '2025-09-21 16:43:14', 'admin', '2025-09-21 16:43:21', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969684465283211265, 1968972778376257537, 'XHD-B-006', '边几', '杨', NULL, 1969684476960153601, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/7cf6e77438204fd4b777663471c8e58f.jpg', '', 1, 0, '2025-09-21 16:45:46', 'admin', '2025-09-21 16:45:49', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969685138737438721, 1968972778376257537, 'XHD-B-007', '边几', '杨', NULL, 1969685150879948802, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/20e306c4138940b59d01b7e1beab2adf.jpg', '', 1, 0, '2025-09-21 16:48:27', 'admin', '2025-09-21 16:48:30', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969685735893082113, 1968972778376257537, 'XHD-B-008', '边几', '杨', NULL, 1969685746420785153, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/b540382f6ae545b6b67990d6ba4f3e2f.jpg', '', 1, 0, '2025-09-21 16:50:49', 'admin', '2025-09-21 16:50:52', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969687444333764609, 1968972778376257537, 'XHD-B-009', '边几', '杨', NULL, 1969687464231542785, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/62e023b858a14fe5a1b605eb95bec123.jpg', '', 1, 0, '2025-09-21 16:57:36', 'admin', '2025-09-21 16:57:41', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969697119150252033, 1968972778376257537, 'XHD-B-010', '边几', '杨', NULL, 1969697140356653057, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/4b7feb1ec3984115b9a368e50f377776.jpg', '', 1, 0, '2025-09-21 17:36:03', 'admin', '2025-09-21 17:36:08', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969697729215963137, 1968972778376257537, 'XHD-B-011', '边几', '杨', NULL, 1969697753375154178, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/48249d879a754b5a9012f97628c36fa3.jpg', '', 1, 0, '2025-09-21 17:38:29', 'admin', '2025-09-21 17:38:35', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969709297349664770, 1968972778376257537, 'XHD-B-012', '边几', '杨', NULL, 1969709314160435201, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/7a65213d8f074b0cb3fed40827e80b7d.jpg', '', 1, 0, '2025-09-21 18:24:27', 'admin', '2025-09-21 18:24:31', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969714800305872897, 1968972778376257537, 'XHD-B-013', '边几', '杨', NULL, 1969714814461648897, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/3f18cb266fa04378a078d299816a3663.jpg', '', 1, 0, '2025-09-21 18:46:19', 'admin', '2025-09-21 18:46:22', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969718832541966337, 1968972778376257537, 'XHD-B-014', '双圆平面小边几', '杨', NULL, 1969718858471153666, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/eea9b3f365b849d7b2f676434637ce57.jpg', '', 1, 0, '2025-09-21 19:02:20', 'admin', '2025-09-21 19:02:26', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969719476585734146, 1968972778376257537, 'XHD-B-015', '双元凹槽小边几', '杨', NULL, 1969719567895732225, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/e39c5ff474c346a58d5370c63bb1db7b.jpg', '', 1, 0, '2025-09-21 19:04:53', 'admin', '2025-09-21 19:05:16', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969720666186817538, 1968972778376257537, 'XHD-B-016', '双层小边几带轮', '杨', NULL, 1969720677993783298, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/9c0328a9c9c445e5b8c78d3deeb84663.jpg', '', 1, 0, '2025-09-21 19:09:37', 'admin', '2025-09-21 19:09:40', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969721402530439169, 1968972778376257537, 'XHD-B-017', '斜方方', '杨', NULL, 1969721416438751233, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/9bd0fea83f1842baa44aa33ddc1886f7.jpg', '', 1, 0, '2025-09-21 19:12:33', 'admin', '2025-09-21 19:12:36', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969723673813164033, 1968972778376257537, 'XHD-B-018', '弯方方', '杨', NULL, 1969723684936458241, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/87f882f8fc5b40699d89a2ba8e65e5af.jpg', '', 1, 0, '2025-09-21 19:21:34', 'admin', '2025-09-21 19:21:37', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969729118783119361, 1968972778376257537, 'XHD-B-019', '弯圆方', '杨', NULL, 1969729136537608193, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/657775a1d40a46a5a2519bcd11167956.jpg', '', 1, 0, '2025-09-21 19:43:12', 'admin', '2025-09-21 19:43:17', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969729879944437762, 1968972778376257537, 'XHD-B-020', '双腿弯方方', '杨', NULL, 1969729891176783874, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/f8223e7fcde24fcfa5808799eb2f7282.jpg', '', 1, 0, '2025-09-21 19:46:14', 'admin', '2025-09-21 19:46:17', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969730740158439425, 1968972778376257537, 'XHD-B-021', '水滴平面边几', '杨', NULL, 1969730758001008641, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/6e9e2980a88c46f499643bf86e41036d.jpg', '', 1, 0, '2025-09-21 19:49:39', 'admin', '2025-09-21 19:49:43', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969731465886277633, 1968972778376257537, 'XHD-B-022', '水滴凹槽边几', '杨', NULL, 1969731487558246402, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/99a9d2c603c04710804fd1c6bb693733.jpg', '', 1, 0, '2025-09-21 19:52:32', 'admin', '2025-09-21 19:52:37', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969732264246878209, 1968972778376257537, 'XHD-B-023', '金价双层圆小边几', '杨', NULL, 1969732274917187586, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/381e9ddb6c994aae9f2e1f5097ce5050.jpg', '', 1, 0, '2025-09-21 19:55:42', 'admin', '2025-09-21 19:55:45', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969732949252218881, 1968972778376257537, 'XHD-B-024', '六字三层边几', '杨', NULL, 1969732967858151425, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/95614009f9a645a8a798b28a431239ad.jpg', '', 1, 0, '2025-09-21 19:58:26', 'admin', '2025-09-21 19:58:30', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969743609092612098, 1968972778376257537, 'XHD-B-025', '上下圆边几', '杨', NULL, 1969743619855196161, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/ab02ff55f73a4a5ab341aa608859edec.jpg', '', 1, 0, '2025-09-21 20:40:47', 'admin', '2025-09-21 20:40:50', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969744203706507265, 1968972778376257537, 'XHD-B-026', '上下花弯托盘边几', '杨', NULL, 1969744214443925506, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/138bfbd6ea0c40ffbdc9037799173422.jpg', '', 1, 0, '2025-09-21 20:43:09', 'admin', '2025-09-21 20:43:12', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969745038683381762, 1968972778376257537, 'XHD-B-027', '双椭圆鸭蛋边几', '杨', NULL, 1969745049185918977, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/d6f40843319548d3afa95fd2cf6df5e2.jpg', '', 1, 0, '2025-09-21 20:46:28', 'admin', '2025-09-21 20:46:31', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969745604713095170, 1968972778376257537, 'XHD-B-028', '棕色皮兜小边几', '杨', NULL, 1969745614460657665, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/4c48ee6c51d74591b27ec21f8268edb0.jpg', '', 1, 0, '2025-09-21 20:48:43', 'admin', '2025-09-21 20:48:45', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969746351882215426, 1968972778376257537, 'XHD-B-029', 'T型边几', '杨', NULL, 1969746361415868417, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/8da8f6ef89dd4c66a6b0cfc42834cffb.jpg', '', 1, 0, '2025-09-21 20:51:41', 'admin', '2025-09-21 20:51:44', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969755445586272257, 1968972778376257537, 'XHD-B-030', 'U型带轮边几', '杨', NULL, 1969755456743120898, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/56de45acb63c4f339ab33696afc0672e.jpg', '', 1, 0, '2025-09-21 21:27:49', 'admin', '2025-09-21 21:27:52', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969762430444609538, 1968972778376257537, 'XHD-B-031', '升降方方小边几', '杨', NULL, 1969762458005381122, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/8d14059d79cd4466afd69e5750914ae4.jpg', '', 1, 0, '2025-09-21 21:55:34', 'admin', '2025-09-21 21:55:41', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969763268856619010, 1968972778376257537, 'XHD-B-032', '升降方圆小边几', '杨', NULL, 1969763289819750401, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/134b933ba23245c0bdec88eab7ebf8cb.jpg', '', 1, 0, '2025-09-21 21:58:54', 'admin', '2025-09-21 21:59:00', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969768530409660417, 1968972778376257537, 'XHD-B-033', '橘色皮革玻璃边几', '杨', NULL, 1969768770843942913, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/09e425d82d28451ab0e71b0657102abf.jpg', '', 1, 0, '2025-09-21 22:19:49', 'admin', '2025-09-21 22:20:46', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969772490478559234, 1968972778376257537, 'XHD-B-034', '双圆扶手边几', '杨', NULL, 1969772501052399617, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/8e84d0f7488e4320a01d0169e21f705d.jpg', '', 1, 0, '2025-09-21 22:35:33', 'admin', '2025-09-21 22:35:36', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969773565428342786, 1968972778376257537, 'XHD-B-035', '三层金白理', '杨', NULL, 1969773576773935106, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/d4dd9b2638ef4516aa98cacc2f6897da.jpg', '', 1, 0, '2025-09-21 22:39:49', 'admin', '2025-09-21 22:39:52', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969774753515282434, 1968972778376257537, 'XHD-B-036', '折叠桌', '杨', NULL, 1969774903805583362, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/7fe64d1ac4b74bee8fd7498da08044c6.jpg', '', 1, 0, '2025-09-21 22:44:33', 'admin', '2025-09-21 22:45:09', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969775989576671233, 1968972778376257537, 'XHD-B-037', '蝴蝶边几', '杨', NULL, 1969776187866587138, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/1c83844dde3e4fbb9779604cec4cc066.jpg', '', 1, 0, '2025-09-21 22:49:27', 'admin', '2025-09-21 22:50:15', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969776842761019393, 1968972778376257537, 'XHD-B-038', '极致灰边几', '杨', NULL, NULL, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/1dc8e55415a840ed99592e80ff213102.jpg', '', 1, 0, '2025-09-21 22:52:51', 'admin', '2025-09-21 22:53:02', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969777302687424514, 1968972778376257537, 'XHD-B-174', 'C型边桌', '杨', NULL, 1969777317749170178, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/e05a6d71c3e5430da5a8900fdb5bd8df.jpg', '1969777654816022529', 1, 0, '2025-09-21 22:54:40', 'admin', '2025-09-21 22:56:07', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969780990093008897, 1968972778376257537, 'XHD-B-182', '边几', '杨', NULL, 1969781242216816642, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/4781df2f5adb4762950367c68c5531eb.jpg', '1969783083201699842', 1, 0, '2025-09-21 23:09:19', 'admin', '2025-09-21 23:17:39', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969783406024695810, 1968972778376257537, 'XHD-B-183', '边几', '杨', NULL, 1969783638057787393, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/5ea7278e42a1439d91166464ba30e835.jpg', '', 1, 0, '2025-09-21 23:18:55', 'admin', '2025-09-21 23:19:51', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969784147493756930, 1968972778376257537, 'XHD-B-184', '边几', '杨', NULL, 1969785247814885378, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/592ed99b16d54a1bb716bb5950f5e305.jpg', '', 1, 0, '2025-09-21 23:21:52', 'admin', '2025-09-21 23:26:15', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969786161900527617, 1968972778376257537, 'XHD-B-185', '边几', '杨', NULL, 1969789149700399105, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/b72eec0878a149d99cedc526ed82a939.jpg', '1969789135590760450', 1, 0, '2025-09-21 23:29:53', 'admin', '2025-09-21 23:41:45', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969789624692744194, 1968972778376257537, 'XHD-B-186', '边桌', '杨', NULL, 1969789745975238657, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/365642c8bebf4009a68445ac8fa32ea1.jpg', '', 1, 0, '2025-09-21 23:43:38', 'admin', '2025-09-21 23:44:07', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969790283173306369, 1968972778376257537, 'XHD-B-187', '边几', '杨', NULL, 1969790576736837633, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/454e6c5fb4c44d93be0f581cd8e1770f.jpg', '1969790533711667201', 1, 0, '2025-09-21 23:46:15', 'admin', '2025-09-21 23:47:25', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969791061833261057, 1968972778376257537, 'XHD-B-188', '茶几', '杨', NULL, 1969791366884990977, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/21/0c6d3846314d446c8512dd568e6bdf66.jpg', '', 1, 0, '2025-09-21 23:49:21', 'admin', '2025-09-21 23:50:34', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969956046119084034, 1968972839566958593, 'XHD-B-2', '床头柜', '杨', NULL, 1969956192529653761, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/d04a40d46e73400db79655ef326ddcfa.jpg', '1969956175542722562', 1, 0, '2025-09-22 10:44:56', 'admin', '2025-09-22 10:45:31', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969957207454752769, 1968972839566958593, 'XHD-B-87', '床头柜', '杨', NULL, 1969957375948333058, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/94fc27b71295413d96e2c8ae34150389.jpg', '1969957357686333442', 1, 0, '2025-09-22 10:49:33', 'admin', '2025-09-22 10:50:13', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969957871375327234, 1968972839566958593, 'XHD-B-91', '床头柜', '杨', NULL, 1969957968318275586, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/43c3ae1dbd6749d7bbfd4bfaec2a39cb.jpg', '', 1, 0, '2025-09-22 10:52:11', 'admin', '2025-09-22 10:52:35', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969958449841152002, 1970383698254180354, 'XHD-B-117', '带电带灯带1抽屉 床头桌', '杨', NULL, 1969958595127648257, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/d1d4d5097dad4cdcbb00092fdfd8dcb6.jpg', '', 1, 0, '2025-09-22 10:54:29', 'admin', '2025-09-23 15:06:50', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969959222054461441, 1970383698254180354, 'XHD-B-118', '带电带灯带2抽屉 床头桌', '杨', NULL, 1969959334650552322, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/fa8cdea2db834a33b77d0b3af401da9d.jpg', '', 1, 0, '2025-09-22 10:57:33', 'admin', '2025-09-23 15:12:55', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969968846753210369, 1970383698254180354, 'XHD-B-119', '带电带灯带3抽屉 床头桌', '杨', NULL, 1969968941892608001, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/c27915f2a7f345e6a7af991f9de37dad.jpg', '', 1, 0, '2025-09-22 11:35:48', 'admin', '2025-09-23 15:16:14', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969969753637232642, 1968972839566958593, 'XHD-B-131', '床头柜', '杨', NULL, 1969969848025849857, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/87a77f0d865448e9862e122c3e5e2afe.jpg', '', 1, 0, '2025-09-22 11:39:24', 'admin', '2025-09-22 11:39:47', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969970239903866881, 1968972839566958593, 'XHD-B-144', '床头柜', '杨', NULL, 1969970253501800449, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/6e0e38751f274d97aa508626f4b7299f.jpg', '1969970344245567490', 1, 0, '2025-09-22 11:41:20', 'admin', '2025-09-22 11:41:46', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969970732315156482, 1968972839566958593, 'XHD-B-161', '床头柜', '杨', NULL, 1969971026562359298, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/4cb2367e759a470ca6a50e480eb9b24e.jpg', '1969970988138340353,1969971007612493826', 1, 0, '2025-09-22 11:43:18', 'admin', '2025-09-22 11:44:28', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969971325200998402, 1968972839566958593, 'XHD-B-162', '床头柜', '杨', NULL, 1969971395187154945, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/cd4c21f4c22c4c108d0c1da85d571090.jpg', '1969971376304398338,1969971378523185154', 1, 0, '2025-09-22 11:45:39', 'admin', '2025-09-22 11:45:56', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969971724981084162, 1968972839566958593, 'XHD-B-163', '床头柜', '杨', NULL, 1969971793239187458, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/96e04f3a491a4a9a81ac14969730b97b.jpg', '1969971776386473985,1969971775287566338', 1, 0, '2025-09-22 11:47:14', 'admin', '2025-09-22 11:47:31', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969972094251802626, 1968972839566958593, 'XHD-B-164', '床头柜', '杨', NULL, 1969972146215034881, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/41faf8a35ad74cbaa9eff212a94f8d99.jpg', '1969972132445134850', 1, 0, '2025-09-22 11:48:42', 'admin', '2025-09-22 11:48:55', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969972560071204865, 1968972839566958593, 'XHD-B-166', '床头柜', '杨', NULL, 1969972623245811713, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/1673f32f03064f1eae7a2388002e2d33.jpg', '1969972603792629761', 1, 0, '2025-09-22 11:50:33', 'admin', '2025-09-22 11:50:49', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969973493031215106, 1968973039731728386, 'XHD-B-9', '鞋柜', '杨', NULL, 1969973546986741761, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/d8b1c75472384401911f34bc805eb7dd.jpg', '1969973533262979074', 1, 0, '2025-09-22 11:54:16', 'admin', '2025-09-22 11:54:29', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969974408433868801, 1968973039731728386, 'XHD-B-11', '鞋架', '杨', NULL, 1969974591829811201, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/138737d1417b4b83972a250436401ee0.jpg', '1969974460468404226', 1, 0, '2025-09-22 11:57:54', 'admin', '2025-09-22 11:58:38', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969975497623314434, 1968973039731728386, 'XHD-B-12', '鞋架', '杨', NULL, 1969975560420433922, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/0c9e5413a44847f8a2c21fcafb31d2bc.jpg', '1969975546973495297', 1, 0, '2025-09-22 12:02:14', 'admin', '2025-09-22 12:02:29', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969976325973188610, 1968973039731728386, 'XHD-B-13', '鞋架', '杨', NULL, 1969976402057863170, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/19658d7700f14075a081b84ff8cdeec3.jpg', '1969976386174033922', 1, 0, '2025-09-22 12:05:31', 'admin', '2025-09-22 12:05:50', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969977090695471105, 1968973039731728386, 'XHD-B-64', '鞋架', '杨', NULL, 1969977209574629378, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/084837962f4a4a6783a2fedf51294f30.jpg', '', 1, 0, '2025-09-22 12:08:33', 'admin', '2025-09-22 12:09:02', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969980185554952194, 1968973039731728386, 'XHD-B-65', '鞋架', '杨', NULL, 1969980280547549186, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/716c46a1dea4445ebc1185a2270742ce.jpg', '', 1, 0, '2025-09-22 12:20:51', 'admin', '2025-09-22 12:21:14', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969992400181895169, 1968973039731728386, 'XHD-B-68', '换鞋柜', '杨', NULL, 1969992490502037505, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/857a1b37ea954fe1885fcc233a37be59.jpg', '', 1, 0, '2025-09-22 13:09:24', 'admin', '2025-09-22 13:09:45', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969993114266345474, 1968973039731728386, 'XHD-B-133', '鞋架', '杨', NULL, 1969993196109799425, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/0567ad01114548dfb9e01f316edfe73e.jpg', '', 1, 0, '2025-09-22 13:12:14', 'admin', '2025-09-22 13:12:34', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969993796063043585, 1968973039731728386, 'XHD-B-43', '猫头鞋架75三层', '杨', NULL, 1969993881140305922, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/3aa9392443c04778b66fbcd9cb79677f.jpg', '', 1, 0, '2025-09-22 13:14:56', 'admin', '2025-09-22 13:15:17', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969994617689448450, 1968973039731728386, 'XHD-B-44', '猫头鞋架75四层', '杨', NULL, 1969994683711987714, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/4b1a2bcd668647bf8d1a73ea7b8554ae.jpg', '', 1, 0, '2025-09-22 13:18:12', 'admin', '2025-09-22 13:18:28', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969996642565201921, 1968973039731728386, 'XHD-B-45', '猫头鞋架75五层', '杨', NULL, 1969996731207622658, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/6909ba8e85114c8cb67a525071713d62.jpg', '', 1, 0, '2025-09-22 13:26:15', 'admin', '2025-09-22 13:26:36', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969997509104214018, 1968973039731728386, 'XHD-B-46', '猫头鞋架50三层', '杨', NULL, 1969997584480051202, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/104533e1dfd5482c9842e02b39907faf.jpg', '', 1, 0, '2025-09-22 13:29:42', 'admin', '2025-09-22 13:30:00', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969998488033796098, 1968973039731728386, 'XHD-B-47', '猫头鞋架50四层', '杨', NULL, 1969998576277757954, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/47fa311f45534ec4ba93225c4659ccaa.jpg', '', 1, 0, '2025-09-22 13:33:35', 'admin', '2025-09-22 13:33:56', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1969999779111870466, 1968973039731728386, 'XHD-B-48', '猫头鞋架50五层', '杨', NULL, 1969999857251753986, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/7d52eee207724e038fe1530ca76c472b.jpg', '', 1, 0, '2025-09-22 13:38:43', 'admin', '2025-09-22 13:39:02', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970000606383808514, 1968973039731728386, 'XHD-B-49', '猫头鞋架28三层', '杨', NULL, 1970000700466241538, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/6ebeacb1c93c458f901c022889cb9e26.jpg', '', 1, 0, '2025-09-22 13:42:00', 'admin', '2025-09-22 13:42:23', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970002151888363521, 1968973039731728386, 'XHD-B-50', '猫头鞋架28四层', '杨', NULL, 1970002221828382722, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/1684ec2715cc4338a8a51ca2fd1269c3.jpg', '', 1, 0, '2025-09-22 13:48:09', 'admin', '2025-09-22 13:48:25', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970002817599905794, 1968973039731728386, 'XHD-B-51', '猫头鞋架28五层', '杨', NULL, 1970002897413316609, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/318ea8c996b444a79d3f30dcd1e5e4ef.jpg', '', 1, 0, '2025-09-22 13:50:47', 'admin', '2025-09-22 13:51:07', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970004236608446466, 1968973078667452418, 'XHD-B-23', '茶几', '杨', NULL, 1970004375452491778, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/827ed96bb8a942c0bb804f1d12ffcc68.jpg', '', 1, 0, '2025-09-22 13:56:26', 'admin', '2025-09-22 13:56:59', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970012278171344898, 1968973078667452418, 'XHD-B-24', '茶几', '杨', NULL, 1970012343887699970, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/efd0e15fd1424b83a20e0cf743327509.jpg', '1970012330876968961', 1, 0, '2025-09-22 14:28:23', 'admin', '2025-09-22 14:28:39', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970021170859188226, 1968973078667452418, 'XHD-B-29', '茶几', '杨', NULL, 1970021248634167297, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/5e1e0af0025d4e56a8c2e861a4c2e307.jpg', '', 1, 0, '2025-09-22 15:03:43', 'admin', '2025-09-22 15:04:02', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970022937013493761, 1968973078667452418, 'XHD-B-92', '茶几', '杨', NULL, 1970023047487266818, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/9248d173c0d3411581918cd9510091a3.jpg', '', 1, 0, '2025-09-22 15:10:44', 'admin', '2025-09-22 15:11:11', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970027043711066113, 1968973078667452418, 'XHD-B-114', '茶几', '杨', NULL, 1970027100879429634, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/c39ff01fffa343c3a2768aee5abb415d.jpg', '1970027086010621953', 1, 0, '2025-09-22 15:27:03', 'admin', '2025-09-24 11:36:23', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970028719062884353, 1968973078667452418, 'XHD-B-142', '茶几', '杨', NULL, 1970028917927419906, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/c3709fb23479401fb6fdbdfb7c7e8e9b.jpg', '1970028902366552065', 1, 0, '2025-09-22 15:33:43', 'admin', '2025-09-22 15:34:30', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970029512520343553, 1968973078667452418, '组合', '60圆/80圆 组合边几', '杨', NULL, 1970029674735050753, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/866c3edd42154de4a078af0364ae8c0e.jpg', '', 1, 0, '2025-09-22 15:36:52', 'admin', '2025-09-22 15:37:31', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970033670522642433, 1968973078667452418, 'XHD-B-176', '茶几', '杨', NULL, 1970033732845805569, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/bae5c287e9544827a1f1b9f326b9f045.jpg', '1970033719566639106', 1, 0, '2025-09-22 15:53:23', 'admin', '2025-09-22 15:53:38', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970037076192632834, 1968973117053722626, 'XHD-B-10', '梳妆台', '杨', NULL, 1970037936104644610, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/1fcdfa548e10441ca7073cabce33c84a.jpg', '1970037614317641729', 1, 0, '2025-09-22 16:06:55', 'admin', '2025-09-22 16:10:20', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970040084334878721, 1968973117053722626, 'XHD-B-71', '梳妆台', '杨', NULL, 1970041310816477185, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/94fb7e2bf51d40fa83162c2e4b29344e.jpg', '1970041258828079105', 1, 0, '2025-09-22 16:18:52', 'admin', '2025-09-22 16:23:45', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970042045327187969, 1968973117053722626, 'XHD-B-73', '梳妆台', '杨', NULL, 1970042090592116737, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/cf858e3368994af5b3bf8ec42b770b1b.jpg', '1970042077296173058', 1, 0, '2025-09-22 16:26:40', 'admin', '2025-09-22 16:26:51', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970042592155377666, 1968973117053722626, 'XHD-B-75', '梳妆台', '杨', NULL, 1970042637965565954, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/8f09586a2c40454eb8c41a917d0e503e.jpg', '1970042625542037505', 1, 0, '2025-09-22 16:28:50', 'admin', '2025-09-22 16:29:01', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970043162618470401, 1968973117053722626, 'XHD-B-85', '梳妆台', '杨', NULL, 1970043389756809217, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/dd846c881ef5402580b794c517881145.jpg', '', 1, 0, '2025-09-22 16:31:06', 'admin', '2025-09-22 16:32:01', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970044307889954817, 1968973117053722626, 'XHD-B-99', '梳妆台', '杨', NULL, 1970044394204536834, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/d90384008b2844b19019af814576615a.jpg', '', 1, 0, '2025-09-22 16:35:39', 'admin', '2025-09-22 16:36:00', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970045063376379905, 1968973171470622722, 'XHD-B-26', '脏衣篮', '杨', NULL, 1970045154078203905, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/e4c44f1f0cb648fea2a961b3ce700e8c.jpg', '', 1, 0, '2025-09-22 16:38:39', 'admin', '2025-09-22 16:39:01', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970045808267993090, 1968973171470622722, 'XHD-B-28', '脏衣篮', '杨', NULL, 1970045978841948162, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/cb4a80c6c4ce48c6a8967601469232d5.jpg', '', 1, 0, '2025-09-22 16:41:37', 'admin', '2025-09-22 16:42:18', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970046809268002818, 1968973117053722626, 'XHD-B-34', '脏衣篮', '杨', NULL, 1970046870290931713, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/70077c41b5dd4ffeb1c0ee47374461e3.jpg', '', 1, 0, '2025-09-22 16:45:36', 'admin', '2025-09-22 16:45:50', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970047539701850113, 1968973171470622722, 'XHD-B-97', '脏衣篮', '杨', NULL, 1970047620505116674, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/e06105f2f0f94995a6807097873a86b6.jpg', '', 1, 0, '2025-09-22 16:48:30', 'admin', '2025-09-22 16:48:49', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970048106171965442, 1968973171470622722, 'XHD-B-98', '脏衣篮', '杨', NULL, 1970048203609841665, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/82d49c3bde584c2cb82b33045f58180c.jpg', '', 1, 0, '2025-09-22 16:50:45', 'admin', '2025-09-22 16:51:08', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970051026762309633, 1968973244921274369, 'XHD-B-36', '唱片机架', '杨', NULL, 1970051086556307457, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/3ba50cd6b8a1464b96ffd30dbd2b8462.jpg', '1970051073461690370', 1, 0, '2025-09-22 17:02:21', 'admin', '2025-09-22 17:02:36', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970092964674351106, 1968973244921274369, 'XHD-B-78', '唱片机架', '杨', NULL, 1970093029623148546, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/386fdbbb276c4363b977d41902a6c467.jpg', '1970093016004243458', 1, 0, '2025-09-22 19:49:00', 'admin', '2025-09-22 19:49:16', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970093645602828289, 1970383698254180354, 'XHD-B-122', '唱片机架', '杨', NULL, 1970093897256873986, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/e0a881cb6f8944c6b7ddd8cfc86ff243.jpg', '', 1, 0, '2025-09-22 19:51:42', 'admin', '2025-09-23 15:25:51', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970098822661615617, 1968973244921274369, 'XHD-B-141', '化妆柜', '杨', NULL, 1970099134256459777, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/1aa9053380174d69b1bad08e802e97ee.jpg', '1970098913434742786,1970098914449764354,1970098914797891586', 1, 0, '2025-09-22 20:12:17', 'admin', '2025-09-22 20:13:31', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970105937027477506, 1968973244921274369, 'XHD-B-039', '方形碳钢多层可移动旋转置物架', '杨', NULL, 1970105980014899202, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/5747dec16de345e6be400aba7eeab9ef.jpg', '', 1, 0, '2025-09-22 20:40:33', 'admin', '2025-09-22 20:40:43', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970107533304082434, 1968973244921274369, 'XHD-B-040', '方形碳钢多层可移动旋转置物架', '杨', NULL, 1970107544813252609, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/f758859559fd4d94a4611087d3279e64.jpg', '', 1, 0, '2025-09-22 20:46:53', 'admin', '2025-09-22 20:46:56', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970114536642523137, 1968973244921274369, 'XHD-B-041', '圆形碳钢多层可移动旋转置物架', '杨', NULL, 1970114556485775362, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/8b053a71c84e4fe0944f71c7f1328039.jpg', '', 1, 0, '2025-09-22 21:14:43', 'admin', '2025-09-22 21:14:48', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970132957383962626, 1968973244921274369, 'XHD-B-042', '圆形碳钢多层可移动旋转置物架', '杨', NULL, 1970141350081409025, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/6f1ecdfe18064f95993a7a1ab6a3afe9.jpg', '', 1, 0, '2025-09-22 22:27:55', 'admin', '2025-09-22 23:02:00', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970147623061499905, 1968973244921274369, 'XHD-B-043', '360度可旋转刀架(一层)', '杨', NULL, 1970147640161677314, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/71f89ff37eff46d1bf9ddb456290386c.jpg', '', 1, 0, '2025-09-22 23:26:12', 'admin', '2025-09-22 23:27:11', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970148372877225986, 1968973244921274369, 'XHD-B-044', '360度可旋转调料架', '杨', NULL, 1970148385783099393, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/b8ba8839700c4e12be3fc189fbdcad51.jpg', '', 1, 0, '2025-09-22 23:29:10', 'admin', '2025-09-22 23:29:14', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970149946387148802, 1968973244921274369, 'XHD-B-045', '小旋风可移动旋转置物架(三层 可折叠)', '杨', NULL, 1970149959569846274, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/74fced0f9c264dc99bf30f82c738ada0.jpg', '', 1, 0, '2025-09-22 23:35:25', 'admin', '2025-09-22 23:36:04', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970150765673132033, 1968973244921274369, 'XHD-B-046', '带桌板小推车', '杨', NULL, 1970150786200055810, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/7ff991877c794b3584b01223134c9a52.jpg', '', 1, 0, '2025-09-22 23:38:41', 'admin', '2025-09-22 23:38:46', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970152092511842306, 1968973244921274369, 'XHD-B-047', '浴室架', '杨', NULL, 1970152105002479618, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/22/20008179c11a42dba0a43a25655f6926.jpg', '', 1, 0, '2025-09-22 23:43:57', 'admin', '2025-09-22 23:44:00', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970320742640332802, 1968973244921274369, 'XHD-B-048', '一体小车', '杨', NULL, 1970320756351512577, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/24/5f7423b604d74c8180f5a4a9b3d8a88b.jpg', '', 1, 0, '2025-09-23 10:54:06', 'admin', '2025-09-24 11:37:45', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970321706667552770, 1968973244921274369, 'XHD-B-049', '花型调料架', '杨', NULL, 1970321724216520705, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/b934fe06b2474e66aec32b05602b5d23.jpg', '', 1, 0, '2025-09-23 10:57:56', 'admin', '2025-09-23 10:58:01', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970322716492378113, 1968973244921274369, 'XHD-B-146', '收纳柜', '杨', NULL, 1970322821106708482, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/5f433d01784d4428a6c362f11009b5de.jpg', '1970322802601439233', 1, 0, '2025-09-23 11:01:57', 'admin', '2025-09-23 11:02:22', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970323195221848066, 1968973244921274369, 'XHD-B-147', '收纳柜', '杨', NULL, 1970323256001507330, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/3ca90749fcfa4418a22106be20553cdc.jpg', '1970323242843975682', 1, 0, '2025-09-23 11:03:51', 'admin', '2025-09-23 11:04:06', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970323601259835394, 1968973244921274369, 'XHD-B-165', '储物柜', '杨', NULL, 1970323703529549825, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/65164c4ab8044ad7ba53cba2c7a2e7ff.jpg', '1970323689558323202', 1, 0, '2025-09-23 11:05:28', 'admin', '2025-09-23 11:05:53', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970324198008631297, 1968973244921274369, 'XHD-B-169', '储物柜', '杨', NULL, 1970324297761763329, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/6004821a89d24809b56cf5701ed3091a.jpg', '1970324279193579522', 1, 0, '2025-09-23 11:07:50', 'admin', '2025-09-23 11:08:14', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970324781880913921, 1968973244921274369, 'XHD-B-171', '储物柜', '杨', NULL, 1970324838759870466, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/5f159b8bc7a544968e143a8ce746eff4.jpg', '1970324825291960321', 1, 0, '2025-09-23 11:10:10', 'admin', '2025-09-23 11:10:23', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970325622708842498, 1968973276038815746, 'XHD-B-1', '滑轮凳', '杨', NULL, 1970325832952524801, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/826d2932f7dd4cbc968c0654cb5631c1.jpg', '', 1, 0, '2025-09-23 11:13:30', 'admin', '2025-09-23 11:14:20', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970326545258590209, 1968973276038815746, 'XHD-B-39', '吧台椅', '杨', NULL, 1970326594034151425, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/bd9452c385dc47429852c489be9e8581.jpg', '1970326578674610177', 1, 0, '2025-09-23 11:17:10', 'admin', '2025-09-23 11:17:22', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970327234214965249, 1968973276038815746, 'XHD-B-40', '饼干凳', '杨', NULL, 1970327341702393858, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/b7aaeaae7f05483eaff70409b7f6ea86.jpg', '', 1, 0, '2025-09-23 11:19:54', 'admin', '2025-09-23 11:20:20', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970327971225481218, 1968973276038815746, 'XHD-B-41', '亚克力电镀滑轮凳', '杨', NULL, 1970328043954712577, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/d23d5bf28c93486abbbbd14ecedc8f13.jpg', '', 1, 0, '2025-09-23 11:22:50', 'admin', '2025-09-23 11:23:08', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970328963304206338, 1968973276038815746, 'XHD-B-42', '亚克力碳钢滑轮凳', '杨', NULL, 1970329049530707970, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/ae73b63be6f44a38b86c552d36fff7b0.jpg', '', 1, 0, '2025-09-23 11:26:46', 'admin', '2025-09-23 11:27:07', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970329810742358017, 1968973276038815746, 'XHD-B-60', '学生椅', '杨', NULL, 1970329895458910209, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/fa5544bbbb2c490fa11f72062d19b7d3.jpg', '', 1, 0, '2025-09-23 11:30:08', 'admin', '2025-09-23 11:30:29', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970330572314718210, 1968973276038815746, 'XHD-B-157', '办公椅', '杨', NULL, 1970330695056830466, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/a8c06375d6a94497ae2d25079587f113.jpg', '', 1, 0, '2025-09-23 11:33:10', 'admin', '2025-09-23 11:33:40', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970331178999820289, 1968973276038815746, 'XHD-B-158', '办公椅', '杨', NULL, 1970331277247197185, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/ef2d8a1677d24c0995b80a286a72ed56.jpg', '', 1, 0, '2025-09-23 11:35:35', 'admin', '2025-09-23 11:35:58', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970331853078999041, 1968974049288118273, 'XHD-B-55', '橄榄衣架', '杨', NULL, 1970331972503416833, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/3a222f36aee3415b9543cadef3106969.jpg', '', 1, 0, '2025-09-23 11:38:15', 'admin', '2025-09-23 11:38:44', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970332604828299266, 1968974049288118273, 'XHD-B-56', 'S衣架', '杨', NULL, 1970332689217695745, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/c349dc6123d549e0acb7e3bcdafd5f08.jpg', '', 1, 0, '2025-09-23 11:41:15', 'admin', '2025-09-23 11:41:35', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970333393818824706, 1968974049288118273, 'XHD-B-57', '折叠晾衣架A款白色', '杨', NULL, 1970333493966221314, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/796ca1025cc745f3b8dc408c3d4ced69.jpg', '', 1, 0, '2025-09-23 11:44:23', 'admin', '2025-09-23 11:44:47', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970334219870220289, 1968974049288118273, 'XHD-B-58', '折叠晾衣架B款白色', '杨', NULL, 1970334310291025921, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/102ca1fe759b4440acfd684fae43382f.jpg', '', 1, 0, '2025-09-23 11:47:40', 'admin', '2025-09-23 11:48:02', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970334908637851649, 1968974049288118273, 'XHD-B-59', '单杆彩球衣架', '杨', NULL, 1970334987025199106, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/06a90301f17947b6903084450a6ff88f.jpg', '', 1, 0, '2025-09-23 11:50:24', 'admin', '2025-09-23 11:50:43', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970357606348828673, 1970383698254180354, 'XHD-B-126', '带电80玄关桌', '杨', NULL, 1970357687143706625, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/be17c61472774cdc93b9357137d7de0f.jpg', '', 1, 0, '2025-09-23 13:20:35', 'admin', '2025-09-23 15:35:28', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970358367308820482, 1970383698254180354, 'XHD-B-127', '带电100玄关桌', '杨', NULL, 1970358461705826305, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/5df10b5098ae49f5868f2fd73492f4f7.jpg', '', 1, 0, '2025-09-23 13:23:37', 'admin', '2025-09-23 15:38:43', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970358951403401217, 1970383698254180354, 'XHD-B-128', '带电120玄关桌', '杨', NULL, 1970359036623269890, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/bba3497ac43d4828af9d770e8e38baf2.jpg', '', 1, 0, '2025-09-23 13:25:56', 'admin', '2025-09-23 15:40:08', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970359972586401794, 1968974204422840321, 'XHD-B-109', '吧台桌凳', '杨', NULL, 1970360042497060866, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/bb302c4edc43429684ffda2ba8886c09.jpg', '1970360027187851265', 1, 0, '2025-09-23 13:30:00', 'admin', '2025-09-23 13:30:17', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970360636037214210, 1968974204422840321, 'XHD-B-137', '一桌四凳', '杨', NULL, 1970360738248208385, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/628867f088f342bd8bb5592ea8f87ae5.jpg', '1970360723509424130', 1, 0, '2025-09-23 13:32:38', 'admin', '2025-09-23 13:33:02', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970361142574919682, 1968974204422840321, 'XHD-B-138', '餐桌', '杨', NULL, 1970361261059813378, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/ed1c22aa126e427c93ba1927b2e1d985.jpg', '1970361219326488577', 1, 0, '2025-09-23 13:34:39', 'admin', '2025-09-23 13:35:07', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970361730083663874, 1968974204422840321, 'XHD-B-154', '小桌子', '杨', NULL, 1970361834987401218, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/e836547edb1349619b458cdf497b0756.jpg', '', 1, 0, '2025-09-23 13:36:59', 'admin', '2025-09-23 13:37:24', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970366992278433793, 1968974204422840321, 'XHD-B-155', '小桌子', '杨', NULL, 1970367200479490050, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/0adb4850e45e48aabce6495aa6c29fa1.jpg', '', 1, 0, '2025-09-23 13:57:53', 'admin', '2025-09-23 13:58:43', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970371284863365122, 1968974204422840321, 'XHD-B-156', '小桌子', '杨', NULL, 1970371468120895490, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/048dc333064e4ae38fd2d963d76a5ab4.jpg', '', 1, 0, '2025-09-23 14:14:57', 'admin', '2025-09-23 14:15:41', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970371963568861185, 1968974204422840321, 'XHD-B-179', '桌凳', '杨', NULL, 1970373149739003905, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/c97e8532e5234b86bb0b575d101790ea.jpg', '1970372028601544705,1970372028916117505', 1, 0, '2025-09-23 14:17:39', 'admin', '2025-09-23 14:22:22', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970377229651750913, 1968974204422840321, 'XHD-B-160', '桌子', '杨', NULL, 1970377244034019329, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/90ddc4ea498649638df9bf023acd3ce8.jpg', '1970377798504230914,1970377798864941057', 1, 0, '2025-09-23 14:38:34', 'admin', '2025-09-23 15:58:58', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970378708026470402, 1968974226958835713, 'XHD-B-86', '悬浮床架', '杨', NULL, 1970378839551455233, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/218729fa4f904ee2be1ac528ed34d033.png', '', 1, 0, '2025-09-23 14:44:27', 'admin', '2025-09-23 14:44:58', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970379742866124801, 1968974226958835713, 'XHD-B-88', '洗衣机盖板', '杨', NULL, 1970379842946412546, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/538b516fd4074796ab44b63f572fccf7.jpg', '', 1, 0, '2025-09-23 14:48:33', 'admin', '2025-09-23 14:48:57', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970380378047328258, 1968974226958835713, 'XHD-B-132', '折叠架', '杨', NULL, 1970380491658440705, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/7602e7fff8574a10b6230e928a6691c4.jpg', '', 1, 0, '2025-09-23 14:51:05', 'admin', '2025-09-23 14:51:32', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970381267839561730, 1968974226958835713, 'XHD-B-159', '羊驼坐凳', '杨', NULL, 1970381392804655106, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/0cf58d278f554680a40e299a2f5bbf0a.jpg', '', 1, 0, '2025-09-23 14:54:37', 'admin', '2025-09-23 14:55:07', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970382486150656001, 1968974226958835713, 'XHD-B-180', '梯凳', '杨', NULL, 1970382586746843137, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/3a7ad58e1006496a8b0c5eca22872e45.jpg', '1970382574373646338', 1, 0, '2025-09-23 14:59:27', 'admin', '2025-09-23 14:59:52', 'admin', NULL);
|
||||
INSERT INTO `gear_product` (`product_id`, `category_id`, `product_code`, `product_name`, `owner`, `unit`, `bom_id`, `type`, `image`, `accessory`, `is_enabled`, `del_flag`, `create_time`, `create_by`, `update_time`, `update_by`, `remark`) VALUES (1970382840246382593, 1968974226958835713, 'XHD-B-181', '梯凳', '杨', NULL, 1970382950753710082, 'product', 'http://49.232.154.205:10900/gear-oa/files/2025/09/23/69d60d8668914772a1a1c29ccca19793.jpg', '', 1, 0, '2025-09-23 15:00:52', 'admin', '2025-09-23 15:01:18', 'admin', NULL);
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user