diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/uniapp/CnasTestForm.vue b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/uniapp/CnasTestForm.vue
deleted file mode 100644
index 9fcea34..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/uniapp/CnasTestForm.vue
+++ /dev/null
@@ -1,96 +0,0 @@
-
-
-
-
- 返回
- cnas测试参数列表
-
-
-
-
-
-
-
-
-
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/uniapp/CnasTestList.vue b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/uniapp/CnasTestList.vue
deleted file mode 100644
index 384cc23..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/uniapp/CnasTestList.vue
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
- 返回
- cnas测试参数列表
-
-
-
-
-
-
-
-
-
-
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/uniapp/ExperimentAnnealProcessForm.vue b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/uniapp/ExperimentAnnealProcessForm.vue
deleted file mode 100644
index c942493..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/uniapp/ExperimentAnnealProcessForm.vue
+++ /dev/null
@@ -1,125 +0,0 @@
-
-
-
-
- 返回
- 退火过程
-
-
-
-
-
-
-
-
-
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/uniapp/ExperimentAnnealProcessList.vue b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/uniapp/ExperimentAnnealProcessList.vue
deleted file mode 100644
index 1add660..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/uniapp/ExperimentAnnealProcessList.vue
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
- 返回
- 退火过程
-
-
-
-
-
-
-
-
-
-
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/CnasTest.api.ts b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/CnasTest.api.ts
deleted file mode 100644
index 6f5b14f..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/CnasTest.api.ts
+++ /dev/null
@@ -1,64 +0,0 @@
-import {defHttp} from '/@/utils/http/axios';
-import { useMessage } from "/@/hooks/web/useMessage";
-
-const { createConfirm } = useMessage();
-
-enum Api {
- list = '/database/cnasTest/list',
- save='/database/cnasTest/add',
- edit='/database/cnasTest/edit',
- deleteOne = '/database/cnasTest/delete',
- deleteBatch = '/database/cnasTest/deleteBatch',
- importExcel = '/database/cnasTest/importExcel',
- exportXls = '/database/cnasTest/exportXls',
-}
-/**
- * 导出api
- * @param params
- */
-export const getExportUrl = Api.exportXls;
-/**
- * 导入api
- */
-export const getImportUrl = Api.importExcel;
-/**
- * 列表接口
- * @param params
- */
-export const list = (params) =>
- defHttp.get({url: Api.list, params});
-
-/**
- * 删除单个
- */
-export const deleteOne = (params,handleSuccess) => {
- return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
- handleSuccess();
- });
-}
-/**
- * 批量删除
- * @param params
- */
-export const batchDelete = (params, handleSuccess) => {
- createConfirm({
- iconType: 'warning',
- title: '确认删除',
- content: '是否删除选中数据',
- okText: '确认',
- cancelText: '取消',
- onOk: () => {
- return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
- handleSuccess();
- });
- }
- });
-}
-/**
- * 保存或者更新
- * @param params
- */
-export const saveOrUpdate = (params, isUpdate) => {
- let url = isUpdate ? Api.edit : Api.save;
- return defHttp.post({url: url, params});
-}
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/CnasTest.data.ts b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/CnasTest.data.ts
deleted file mode 100644
index 2e0140a..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/CnasTest.data.ts
+++ /dev/null
@@ -1,100 +0,0 @@
-import {BasicColumn} from '/@/components/Table';
-import {FormSchema} from '/@/components/Table';
-import { rules} from '/@/utils/helper/validator';
-import { render } from '/@/utils/common/renderUtils';
-import { getWeekMonthQuarterYear } from '/@/utils';
-//列表数据
-export const columns: BasicColumn[] = [
- {
- title: '检测对象',
- align:"center",
- dataIndex: 'testTarget'
- },
- {
- title: '参数',
- align:"center",
- dataIndex: 'parameter'
- },
- {
- title: '检测标准',
- align:"center",
- dataIndex: 'testStandard'
- },
- {
- title: '创建时间',
- align:"center",
- dataIndex: 'time',
- customRender:({text}) =>{
- text = !text ? "" : (text.length > 10 ? text.substr(0,10) : text);
- return text;
- },
- },
-];
-//查询数据
-export const searchFormSchema: FormSchema[] = [
- {
- label: "检测对象",
- field: 'testTarget',
- component: 'Input',
- //colProps: {span: 6},
- },
- {
- label: "创建时间",
- field: 'time',
- component: 'DatePicker',
- componentProps: {
- valueFormat: 'YYYY-MM-DD'
- },
- //colProps: {span: 6},
- },
-];
-//表单数据
-export const formSchema: FormSchema[] = [
- {
- label: '检测对象',
- field: 'testTarget',
- component: 'Input',
- },
- {
- label: '参数',
- field: 'parameter',
- component: 'Input',
- },
- {
- label: '检测标准',
- field: 'testStandard',
- component: 'Input',
- },
- {
- label: '创建时间',
- field: 'time',
- component: 'DatePicker',
- componentProps: {
- valueFormat: 'YYYY-MM-DD'
- },
- },
- // TODO 主键隐藏字段,目前写死为ID
- {
- label: '',
- field: 'id',
- component: 'Input',
- show: false
- },
-];
-
-// 高级查询数据
-export const superQuerySchema = {
- testTarget: {title: '检测对象',order: 0,view: 'text', type: 'string',},
- parameter: {title: '参数',order: 1,view: 'text', type: 'string',},
- testStandard: {title: '检测标准',order: 2,view: 'text', type: 'string',},
- time: {title: '创建时间',order: 3,view: 'date', type: 'string',},
-};
-
-/**
-* 流程表单调用这个方法获取formSchema
-* @param param
-*/
-export function getBpmFormSchema(_formData): FormSchema[]{
- // 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
- return formSchema;
-}
\ No newline at end of file
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/CnasTestList.vue b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/CnasTestList.vue
deleted file mode 100644
index a2d0f01..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/CnasTestList.vue
+++ /dev/null
@@ -1,188 +0,0 @@
-
-
-
-
-
-
- 新增
- 导出
- 导入
-
-
-
-
-
- 删除
-
-
-
- 批量操作
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/ExperimentAnnealProcess.api.ts b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/ExperimentAnnealProcess.api.ts
deleted file mode 100644
index 57cfcca..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/ExperimentAnnealProcess.api.ts
+++ /dev/null
@@ -1,64 +0,0 @@
-import {defHttp} from '/@/utils/http/axios';
-import { useMessage } from "/@/hooks/web/useMessage";
-
-const { createConfirm } = useMessage();
-
-enum Api {
- list = '/database/experimentAnnealProcess/list',
- save='/database/experimentAnnealProcess/add',
- edit='/database/experimentAnnealProcess/edit',
- deleteOne = '/database/experimentAnnealProcess/delete',
- deleteBatch = '/database/experimentAnnealProcess/deleteBatch',
- importExcel = '/database/experimentAnnealProcess/importExcel',
- exportXls = '/database/experimentAnnealProcess/exportXls',
-}
-/**
- * 导出api
- * @param params
- */
-export const getExportUrl = Api.exportXls;
-/**
- * 导入api
- */
-export const getImportUrl = Api.importExcel;
-/**
- * 列表接口
- * @param params
- */
-export const list = (params) =>
- defHttp.get({url: Api.list, params});
-
-/**
- * 删除单个
- */
-export const deleteOne = (params,handleSuccess) => {
- return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
- handleSuccess();
- });
-}
-/**
- * 批量删除
- * @param params
- */
-export const batchDelete = (params, handleSuccess) => {
- createConfirm({
- iconType: 'warning',
- title: '确认删除',
- content: '是否删除选中数据',
- okText: '确认',
- cancelText: '取消',
- onOk: () => {
- return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
- handleSuccess();
- });
- }
- });
-}
-/**
- * 保存或者更新
- * @param params
- */
-export const saveOrUpdate = (params, isUpdate) => {
- let url = isUpdate ? Api.edit : Api.save;
- return defHttp.post({url: url, params});
-}
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/ExperimentAnnealProcess.data.ts b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/ExperimentAnnealProcess.data.ts
deleted file mode 100644
index f3b69e3..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/ExperimentAnnealProcess.data.ts
+++ /dev/null
@@ -1,122 +0,0 @@
-import {BasicColumn} from '/@/components/Table';
-import {FormSchema} from '/@/components/Table';
-import { rules} from '/@/utils/helper/validator';
-import { render } from '/@/utils/common/renderUtils';
-import { getWeekMonthQuarterYear } from '/@/utils';
-//列表数据
-export const columns: BasicColumn[] = [
- {
- title: ' 辐照源',
- align:"center",
- dataIndex: 'radiationSource'
- },
- {
- title: '计量率',
- align:"center",
- dataIndex: 'measurementRate'
- },
- {
- title: '辐照标准',
- align:"center",
- dataIndex: 'radiationStandard'
- },
- {
- title: '退火温度',
- align:"center",
- dataIndex: 'annealTemperature'
- },
- {
- title: '备注',
- align:"center",
- dataIndex: 'comment'
- },
- {
- title: '异常记录',
- align:"center",
- dataIndex: 'exceptionRecord'
- },
- {
- title: '辐照详情(json存储)',
- align:"center",
- dataIndex: 'radiationDetail'
- },
- {
- title: '试验ID',
- align:"center",
- dataIndex: 'experimentId'
- },
-];
-//查询数据
-export const searchFormSchema: FormSchema[] = [
-];
-//表单数据
-export const formSchema: FormSchema[] = [
- {
- label: ' 辐照源',
- field: 'radiationSource',
- component: 'Input',
- },
- {
- label: '计量率',
- field: 'measurementRate',
- component: 'Input',
- },
- {
- label: '辐照标准',
- field: 'radiationStandard',
- component: 'Input',
- },
- {
- label: '退火温度',
- field: 'annealTemperature',
- component: 'Input',
- },
- {
- label: '备注',
- field: 'comment',
- component: 'Input',
- },
- {
- label: '异常记录',
- field: 'exceptionRecord',
- component: 'Input',
- },
- {
- label: '辐照详情(json存储)',
- field: 'radiationDetail',
- component: 'Input',
- },
- {
- label: '试验ID',
- field: 'experimentId',
- component: 'Input',
- },
- // TODO 主键隐藏字段,目前写死为ID
- {
- label: '',
- field: 'id',
- component: 'Input',
- show: false
- },
-];
-
-// 高级查询数据
-export const superQuerySchema = {
- radiationSource: {title: ' 辐照源',order: 0,view: 'text', type: 'string',},
- measurementRate: {title: '计量率',order: 1,view: 'text', type: 'string',},
- radiationStandard: {title: '辐照标准',order: 2,view: 'text', type: 'string',},
- annealTemperature: {title: '退火温度',order: 3,view: 'text', type: 'string',},
- comment: {title: '备注',order: 4,view: 'text', type: 'string',},
- exceptionRecord: {title: '异常记录',order: 5,view: 'text', type: 'string',},
- radiationDetail: {title: '辐照详情(json存储)',order: 6,view: 'text', type: 'string',},
- experimentId: {title: '试验ID',order: 7,view: 'text', type: 'string',},
-};
-
-/**
-* 流程表单调用这个方法获取formSchema
-* @param param
-*/
-export function getBpmFormSchema(_formData): FormSchema[]{
- // 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema
- return formSchema;
-}
\ No newline at end of file
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/ExperimentAnnealProcessList.vue b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/ExperimentAnnealProcessList.vue
deleted file mode 100644
index c4a41b2..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/ExperimentAnnealProcessList.vue
+++ /dev/null
@@ -1,188 +0,0 @@
-
-
-
-
-
-
- 新增
- 导出
- 导入
-
-
-
-
-
- 删除
-
-
-
- 批量操作
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/V20241021_1__menu_insert_ExperimentAnnealProcess.sql b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/V20241021_1__menu_insert_ExperimentAnnealProcess.sql
deleted file mode 100644
index c546e14..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/V20241021_1__menu_insert_ExperimentAnnealProcess.sql
+++ /dev/null
@@ -1,26 +0,0 @@
--- 注意:该页面对应的前台目录为views/database文件夹下
--- 如果你想更改到其他目录,请修改sql中component字段对应的值
-
-
-INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external)
-VALUES ('2024102103111150340', NULL, '退火过程', '/database/experimentAnnealProcessList', 'database/ExperimentAnnealProcessList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2024-10-21 03:11:34', NULL, NULL, 0);
-
--- 权限控制sql
--- 新增
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024102103111150341', '2024102103111150340', '添加退火过程', NULL, NULL, 0, NULL, NULL, 2, 'database:experiment_anneal_process:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-21 03:11:34', NULL, NULL, 0, 0, '1', 0);
--- 编辑
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024102103111150342', '2024102103111150340', '编辑退火过程', NULL, NULL, 0, NULL, NULL, 2, 'database:experiment_anneal_process:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-21 03:11:34', NULL, NULL, 0, 0, '1', 0);
--- 删除
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024102103111150343', '2024102103111150340', '删除退火过程', NULL, NULL, 0, NULL, NULL, 2, 'database:experiment_anneal_process:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-21 03:11:34', NULL, NULL, 0, 0, '1', 0);
--- 批量删除
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024102103111150344', '2024102103111150340', '批量删除退火过程', NULL, NULL, 0, NULL, NULL, 2, 'database:experiment_anneal_process:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-21 03:11:34', NULL, NULL, 0, 0, '1', 0);
--- 导出excel
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024102103111150345', '2024102103111150340', '导出excel_退火过程', NULL, NULL, 0, NULL, NULL, 2, 'database:experiment_anneal_process:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-21 03:11:34', NULL, NULL, 0, 0, '1', 0);
--- 导入excel
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024102103111150346', '2024102103111150340', '导入excel_退火过程', NULL, NULL, 0, NULL, NULL, 2, 'database:experiment_anneal_process:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-21 03:11:34', NULL, NULL, 0, 0, '1', 0);
\ No newline at end of file
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/V20241023_1__menu_insert_CnasTest.sql b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/V20241023_1__menu_insert_CnasTest.sql
deleted file mode 100644
index 44daaeb..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/V20241023_1__menu_insert_CnasTest.sql
+++ /dev/null
@@ -1,26 +0,0 @@
--- 注意:该页面对应的前台目录为views/database文件夹下
--- 如果你想更改到其他目录,请修改sql中component字段对应的值
-
-
-INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external)
-VALUES ('2024102302416200540', NULL, 'cnas测试参数列表', '/database/cnasTestList', 'database/CnasTestList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2024-10-23 14:41:54', NULL, NULL, 0);
-
--- 权限控制sql
--- 新增
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024102302416200541', '2024102302416200540', '添加cnas测试参数列表', NULL, NULL, 0, NULL, NULL, 2, 'database:cnas_test:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-23 14:41:54', NULL, NULL, 0, 0, '1', 0);
--- 编辑
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024102302416200542', '2024102302416200540', '编辑cnas测试参数列表', NULL, NULL, 0, NULL, NULL, 2, 'database:cnas_test:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-23 14:41:54', NULL, NULL, 0, 0, '1', 0);
--- 删除
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024102302416200543', '2024102302416200540', '删除cnas测试参数列表', NULL, NULL, 0, NULL, NULL, 2, 'database:cnas_test:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-23 14:41:54', NULL, NULL, 0, 0, '1', 0);
--- 批量删除
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024102302416200544', '2024102302416200540', '批量删除cnas测试参数列表', NULL, NULL, 0, NULL, NULL, 2, 'database:cnas_test:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-23 14:41:54', NULL, NULL, 0, 0, '1', 0);
--- 导出excel
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024102302416210545', '2024102302416200540', '导出excel_cnas测试参数列表', NULL, NULL, 0, NULL, NULL, 2, 'database:cnas_test:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-23 14:41:54', NULL, NULL, 0, 0, '1', 0);
--- 导入excel
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2024102302416210546', '2024102302416200540', '导入excel_cnas测试参数列表', NULL, NULL, 0, NULL, NULL, 2, 'database:cnas_test:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-10-23 14:41:54', NULL, NULL, 0, 0, '1', 0);
\ No newline at end of file
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/components/CnasTestForm.vue b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/components/CnasTestForm.vue
deleted file mode 100644
index a9273f4..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/components/CnasTestForm.vue
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/components/CnasTestModal.vue b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/components/CnasTestModal.vue
deleted file mode 100644
index f5b1649..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/components/CnasTestModal.vue
+++ /dev/null
@@ -1,68 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/components/ExperimentAnnealProcessForm.vue b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/components/ExperimentAnnealProcessForm.vue
deleted file mode 100644
index bbe84f2..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/components/ExperimentAnnealProcessForm.vue
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/components/ExperimentAnnealProcessModal.vue b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/components/ExperimentAnnealProcessModal.vue
deleted file mode 100644
index 5a39cdb..0000000
--- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/vue3/components/ExperimentAnnealProcessModal.vue
+++ /dev/null
@@ -1,68 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file