diff --git a/src/api/part/abcClassInformation.js b/src/api/part/abcClassInformation.js
new file mode 100644
index 0000000..ef25521
--- /dev/null
+++ b/src/api/part/abcClassInformation.js
@@ -0,0 +1,26 @@
+import { createAPI } from "@/utils/httpRequest.js";
+
+/**
+ * ABC类信息列表查询
+ * @param data
+ * @returns {*}
+ */
+export const abcClassInformationSearch = data => createAPI(`/plm/abcClassInformation/abcClassInformationSearch`,'post',data)
+/**
+ * ABC类信息新增
+ * @param data
+ * @returns {*}
+ */
+export const abcClassInformationSave = data => createAPI(`/plm/abcClassInformation/abcClassInformationSave`,'post',data)
+/**
+ * ABC类信息编辑
+ * @param data
+ * @returns {*}
+ */
+export const abcClassInformationEdit = data => createAPI(`/plm/abcClassInformation/abcClassInformationEdit`,'post',data)
+/**
+ * ABC类信息删除
+ * @param data
+ * @returns {*}
+ */
+export const abcClassInformationDelete = data => createAPI(`/plm/abcClassInformation/abcClassInformationDelete`,'post',data)
diff --git a/src/api/part/assetClassInformation.js b/src/api/part/assetClassInformation.js
new file mode 100644
index 0000000..4c9d198
--- /dev/null
+++ b/src/api/part/assetClassInformation.js
@@ -0,0 +1,26 @@
+import { createAPI } from "@/utils/httpRequest.js";
+
+/**
+ * 资产等级信息列表查询
+ * @param data
+ * @returns {*}
+ */
+export const assetClassInformationSearch = data => createAPI(`/plm/assetClassInformation/assetClassInformationSearch`,'post',data)
+/**
+ * 资产等级信息新增
+ * @param data
+ * @returns {*}
+ */
+export const assetClassInformationSave = data => createAPI(`/plm/assetClassInformation/assetClassInformationSave`,'post',data)
+/**
+ * 资产等级信息编辑
+ * @param data
+ * @returns {*}
+ */
+export const assetClassInformationEdit = data => createAPI(`/plm/assetClassInformation/assetClassInformationEdit`,'post',data)
+/**
+ * 资产等级信息删除
+ * @param data
+ * @returns {*}
+ */
+export const assetClassInformationDelete = data => createAPI(`/plm/assetClassInformation/assetClassInformationDelete`,'post',data)
diff --git a/src/api/part/countryInformation.js b/src/api/part/countryInformation.js
new file mode 100644
index 0000000..7666310
--- /dev/null
+++ b/src/api/part/countryInformation.js
@@ -0,0 +1,26 @@
+import { createAPI } from "@/utils/httpRequest.js";
+
+/**
+ * 来源国家信息列表查询
+ * @param data
+ * @returns {*}
+ */
+export const countryInformationSearch = data => createAPI(`/plm/countryInformation/countryInformationSearch`,'post',data)
+/**
+ * 来源国家信息新增
+ * @param data
+ * @returns {*}
+ */
+export const countryInformationSave = data => createAPI(`/plm/countryInformation/countryInformationSave`,'post',data)
+/**
+ * 来源国家信息编辑
+ * @param data
+ * @returns {*}
+ */
+export const countryInformationEdit = data => createAPI(`/plm/countryInformation/countryInformationEdit`,'post',data)
+/**
+ * 来源国家信息删除
+ * @param data
+ * @returns {*}
+ */
+export const countryInformationDelete = data => createAPI(`/plm/countryInformation/countryInformationDelete`,'post',data)
diff --git a/src/api/part/customsStatInformation.js b/src/api/part/customsStatInformation.js
new file mode 100644
index 0000000..c82e35c
--- /dev/null
+++ b/src/api/part/customsStatInformation.js
@@ -0,0 +1,26 @@
+import { createAPI } from "@/utils/httpRequest.js";
+
+/**
+ * 海关统计信息列表查询
+ * @param data
+ * @returns {*}
+ */
+export const customsStatInformationSearch = data => createAPI(`/plm/customsStatInformation/customsStatInformationSearch`,'post',data)
+/**
+ * 海关统计信息新增
+ * @param data
+ * @returns {*}
+ */
+export const customsStatInformationSave = data => createAPI(`/plm/customsStatInformation/customsStatInformationSave`,'post',data)
+/**
+ * 海关统计信息编辑
+ * @param data
+ * @returns {*}
+ */
+export const customsStatInformationEdit = data => createAPI(`/plm/customsStatInformation/customsStatInformationEdit`,'post',data)
+/**
+ * 海关统计信息删除
+ * @param data
+ * @returns {*}
+ */
+export const customsStatInformationDelete = data => createAPI(`/plm/customsStatInformation/customsStatInformationDelete`,'post',data)
diff --git a/src/api/part/partCostGroupInformation.js b/src/api/part/partCostGroupInformation.js
new file mode 100644
index 0000000..c7fa4e8
--- /dev/null
+++ b/src/api/part/partCostGroupInformation.js
@@ -0,0 +1,26 @@
+import { createAPI } from "@/utils/httpRequest.js";
+
+/**
+ * 零件成本组信息列表查询
+ * @param data
+ * @returns {*}
+ */
+export const partCostGroupInformationSearch = data => createAPI(`/plm/partCostGroupInformation/partCostGroupInformationSearch`,'post',data)
+/**
+ * 零件成本组信息新增
+ * @param data
+ * @returns {*}
+ */
+export const partCostGroupInformationSave = data => createAPI(`/plm/partCostGroupInformation/partCostGroupInformationSave`,'post',data)
+/**
+ * 零件成本组信息编辑
+ * @param data
+ * @returns {*}
+ */
+export const partCostGroupInformationEdit = data => createAPI(`/plm/partCostGroupInformation/partCostGroupInformationEdit`,'post',data)
+/**
+ * 零件成本组信息删除
+ * @param data
+ * @returns {*}
+ */
+export const partCostGroupInformationDelete = data => createAPI(`/plm/partCostGroupInformation/partCostGroupInformationDelete`,'post',data)
diff --git a/src/api/part/partStatusInformation.js b/src/api/part/partStatusInformation.js
new file mode 100644
index 0000000..c8a3f32
--- /dev/null
+++ b/src/api/part/partStatusInformation.js
@@ -0,0 +1,26 @@
+import { createAPI } from "@/utils/httpRequest.js";
+
+/**
+ * 零件状态信息列表查询
+ * @param data
+ * @returns {*}
+ */
+export const partStatusInformationSearch = data => createAPI(`/plm/partStatusInformation/partStatusInformationSearch`,'post',data)
+/**
+ * 零件状态信息新增
+ * @param data
+ * @returns {*}
+ */
+export const partStatusInformationSave = data => createAPI(`/plm/partStatusInformation/partStatusInformationSave`,'post',data)
+/**
+ * 零件状态信息编辑
+ * @param data
+ * @returns {*}
+ */
+export const partStatusInformationEdit = data => createAPI(`/plm/partStatusInformation/partStatusInformationEdit`,'post',data)
+/**
+ * 零件状态信息删除
+ * @param data
+ * @returns {*}
+ */
+export const partStatusInformationDelete = data => createAPI(`/plm/partStatusInformation/partStatusInformationDelete`,'post',data)
diff --git a/src/api/part/planningMethodInformation.js b/src/api/part/planningMethodInformation.js
new file mode 100644
index 0000000..19cc29e
--- /dev/null
+++ b/src/api/part/planningMethodInformation.js
@@ -0,0 +1,26 @@
+import { createAPI } from "@/utils/httpRequest.js";
+
+/**
+ * 计划方法信息列表查询
+ * @param data
+ * @returns {*}
+ */
+export const planningMethodInformationSearch = data => createAPI(`/plm/planningMethodInformation/planningMethodInformationSearch`,'post',data)
+/**
+ * 计划方法信息新增
+ * @param data
+ * @returns {*}
+ */
+export const planningMethodInformationSave = data => createAPI(`/plm/planningMethodInformation/planningMethodInformationSave`,'post',data)
+/**
+ * 计划方法信息编辑
+ * @param data
+ * @returns {*}
+ */
+export const planningMethodInformationEdit = data => createAPI(`/plm/planningMethodInformation/planningMethodInformationEdit`,'post',data)
+/**
+ * 计划方法信息删除
+ * @param data
+ * @returns {*}
+ */
+export const planningMethodInformationDelete = data => createAPI(`/plm/planningMethodInformation/planningMethodInformationDelete`,'post',data)
diff --git a/src/api/part/regionInformation.js b/src/api/part/regionInformation.js
new file mode 100644
index 0000000..acbc151
--- /dev/null
+++ b/src/api/part/regionInformation.js
@@ -0,0 +1,26 @@
+import { createAPI } from "@/utils/httpRequest.js";
+
+/**
+ * 区域信息列表查询
+ * @param data
+ * @returns {*}
+ */
+export const regionInformationSearch = data => createAPI(`/plm/regionInformation/regionInformationSearch`,'post',data)
+/**
+ * 区域信息新增
+ * @param data
+ * @returns {*}
+ */
+export const regionInformationSave = data => createAPI(`/plm/regionInformation/regionInformationSave`,'post',data)
+/**
+ * 区域信息编辑
+ * @param data
+ * @returns {*}
+ */
+export const regionInformationEdit = data => createAPI(`/plm/regionInformation/regionInformationEdit`,'post',data)
+/**
+ * 区域信息删除
+ * @param data
+ * @returns {*}
+ */
+export const regionInformationDelete = data => createAPI(`/plm/regionInformation/regionInformationDelete`,'post',data)
diff --git a/src/api/part/safetyCodeInformation.js b/src/api/part/safetyCodeInformation.js
new file mode 100644
index 0000000..48bfa23
--- /dev/null
+++ b/src/api/part/safetyCodeInformation.js
@@ -0,0 +1,26 @@
+import { createAPI } from "@/utils/httpRequest.js";
+
+/**
+ * 安全代码信息列表查询
+ * @param data
+ * @returns {*}
+ */
+export const safetyCodeInformationSearch = data => createAPI(`/plm/safetyCodeInformation/safetyCodeInformationSearch`,'post',data)
+/**
+ * 安全代码信息新增
+ * @param data
+ * @returns {*}
+ */
+export const safetyCodeInformationSave = data => createAPI(`/plm/safetyCodeInformation/safetyCodeInformationSave`,'post',data)
+/**
+ * 安全代码信息编辑
+ * @param data
+ * @returns {*}
+ */
+export const safetyCodeInformationEdit = data => createAPI(`/plm/safetyCodeInformation/safetyCodeInformationEdit`,'post',data)
+/**
+ * 安全代码信息删除
+ * @param data
+ * @returns {*}
+ */
+export const safetyCodeInformationDelete = data => createAPI(`/plm/safetyCodeInformation/safetyCodeInformationDelete`,'post',data)
diff --git a/src/views/modules/part/abcClassInformation.vue b/src/views/modules/part/abcClassInformation.vue
new file mode 100644
index 0000000..164e3a7
--- /dev/null
+++ b/src/views/modules/part/abcClassInformation.vue
@@ -0,0 +1,488 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 新增
+
+ {{ "导出" }}
+
+
+
+
+
+
+
+ {{ scope.row[item.columnProp] }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 保存
+ 关闭
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/part/assetClassInformation.vue b/src/views/modules/part/assetClassInformation.vue
new file mode 100644
index 0000000..a52498c
--- /dev/null
+++ b/src/views/modules/part/assetClassInformation.vue
@@ -0,0 +1,488 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 新增
+
+ {{ "导出" }}
+
+
+
+
+
+
+
+ {{ scope.row[item.columnProp] }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 保存
+ 关闭
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/part/countryInformation.vue b/src/views/modules/part/countryInformation.vue
new file mode 100644
index 0000000..95f23af
--- /dev/null
+++ b/src/views/modules/part/countryInformation.vue
@@ -0,0 +1,488 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 新增
+
+ {{ "导出" }}
+
+
+
+
+
+
+
+ {{ scope.row[item.columnProp] }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 保存
+ 关闭
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/part/customsStatInformation.vue b/src/views/modules/part/customsStatInformation.vue
new file mode 100644
index 0000000..58eb99e
--- /dev/null
+++ b/src/views/modules/part/customsStatInformation.vue
@@ -0,0 +1,525 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 新增
+
+ {{ "导出" }}
+
+
+
+
+
+
+
+ {{ scope.row[item.columnProp] }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 保存
+ 关闭
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/part/partCostGroupInformation.vue b/src/views/modules/part/partCostGroupInformation.vue
new file mode 100644
index 0000000..67e2f02
--- /dev/null
+++ b/src/views/modules/part/partCostGroupInformation.vue
@@ -0,0 +1,488 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 新增
+
+ {{ "导出" }}
+
+
+
+
+
+
+
+ {{ scope.row[item.columnProp] }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 保存
+ 关闭
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/part/partStatusInformation.vue b/src/views/modules/part/partStatusInformation.vue
new file mode 100644
index 0000000..d2eba80
--- /dev/null
+++ b/src/views/modules/part/partStatusInformation.vue
@@ -0,0 +1,488 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 新增
+
+ {{ "导出" }}
+
+
+
+
+
+
+
+ {{ scope.row[item.columnProp] }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 保存
+ 关闭
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/part/planningMethodInformation.vue b/src/views/modules/part/planningMethodInformation.vue
new file mode 100644
index 0000000..1c8ca35
--- /dev/null
+++ b/src/views/modules/part/planningMethodInformation.vue
@@ -0,0 +1,488 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 新增
+
+ {{ "导出" }}
+
+
+
+
+
+
+
+ {{ scope.row[item.columnProp] }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 保存
+ 关闭
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/part/regionInformation.vue b/src/views/modules/part/regionInformation.vue
new file mode 100644
index 0000000..99eccf8
--- /dev/null
+++ b/src/views/modules/part/regionInformation.vue
@@ -0,0 +1,488 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 新增
+
+ {{ "导出" }}
+
+
+
+
+
+
+
+ {{ scope.row[item.columnProp] }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 保存
+ 关闭
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/part/safetyCodeInformation.vue b/src/views/modules/part/safetyCodeInformation.vue
new file mode 100644
index 0000000..1639a85
--- /dev/null
+++ b/src/views/modules/part/safetyCodeInformation.vue
@@ -0,0 +1,488 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 新增
+
+ {{ "导出" }}
+
+
+
+
+
+
+
+ {{ scope.row[item.columnProp] }}
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 保存
+ 关闭
+
+
+
+
+
+
+
+
+
+
+
+