From 659cfafb1ba0212970668131392e6de90ab754ff Mon Sep 17 00:00:00 2001 From: ls Date: Mon, 9 Dec 2024 10:52:48 +0800 Subject: [PATCH] update --- physical-boot.sql | 522 ++++++++++-------- .../ExperimentAnnealProcessController.java | 40 +- .../controller/ExperimentController.java | 4 +- .../ExperimentRadiationProcessController.java | 35 +- .../ExperimentTestProcessController.java | 35 +- .../entity/ExperimentAnnealProcess.java | 12 +- .../entity/ExperimentRadiationProcess.java | 3 + .../entity/ExperimentTestProcess.java | 4 + .../IExperimentAnnealProcessService.java | 4 + .../IExperimentRadiationProcessService.java | 3 + .../database/service/IExperimentService.java | 3 + .../IExperimentTestProcessService.java | 3 + .../ExperimentAnnealProcessServiceImpl.java | 99 +++- ...ExperimentRadiationProcessServiceImpl.java | 52 +- .../service/impl/ExperimentServiceImpl.java | 19 +- .../ExperimentTestProcessServiceImpl.java | 49 +- 16 files changed, 557 insertions(+), 330 deletions(-) diff --git a/physical-boot.sql b/physical-boot.sql index e0f0729..7959e3d 100644 --- a/physical-boot.sql +++ b/physical-boot.sql @@ -4,7 +4,7 @@ -- https://tableplus.com/ -- -- Database: physical-boot --- Generation Time: 2024-12-05 12:51:16.3580 +-- Generation Time: 2024-12-05 14:52:10.3760 -- ------------------------------------------------------------- @@ -171,6 +171,7 @@ CREATE TABLE `experiment` ( `deviation_condition` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '偏置条件', `sample_info` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '样品信息', `copy_count` int DEFAULT '0' COMMENT '复制次数', + `files` text COLLATE utf8mb4_general_ci COMMENT '附件', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; @@ -318,6 +319,7 @@ CREATE TABLE `experiment_report` ( `confirmer` varchar(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '确认员', `status` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '状态', `report_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '报告名称', + `memo` varchar(36) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '审批意见', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; @@ -381,20 +383,21 @@ CREATE TABLE `experiment_test_process` ( `measurement_rate` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '计量率', `radiation_standard` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '辐照标准', `environmental_temperature` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '环境温度', - `comment` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '备注', - `exception_record` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '异常记录', - `radiation_detail` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '辐照详情(json存储)', + `comment` text COLLATE utf8mb4_general_ci COMMENT '备注', + `exception_record` text COLLATE utf8mb4_general_ci COMMENT '异常记录', + `radiation_detail` text COLLATE utf8mb4_general_ci COMMENT '辐照详情(json存储)', `experiment_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '试验ID', `test_start_time` datetime DEFAULT NULL COMMENT '测试开始时间', `test_end_time` datetime DEFAULT NULL COMMENT '测试结束时间', `environmental_humidity` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '环境湿度', - `test_parameters` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '测试参数(json 大字段)', - `test_equipment` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '测试设备(json 大字段)', + `test_parameters` text COLLATE utf8mb4_general_ci COMMENT '测试参数(json 大字段)', + `test_equipment` text COLLATE utf8mb4_general_ci COMMENT '测试设备(json 大字段)', `test_metering_point` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '测试计量点', `test_fluence_point` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '测试注量点', `annealing_duration` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '退火时长', - `test_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '测试数据(json 大字段)', + `test_data` text COLLATE utf8mb4_general_ci COMMENT '测试数据(json 大字段)', `test_result` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '测试结果', + `test_standards_id` varchar(36) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '测试标准ID', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; @@ -447,6 +450,8 @@ CREATE TABLE `irradiation_standards` ( `condition_b` varchar(512) DEFAULT NULL COMMENT '条件B', `condition_c` varchar(512) DEFAULT NULL COMMENT '条件C', `condition_a` varchar(512) DEFAULT NULL COMMENT '条件A', + `accelerated_anneal_temperature` varchar(36) DEFAULT NULL COMMENT '加速退火温度', + `room_anneal_temperature` varchar(36) DEFAULT NULL COMMENT '室温退火温度', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; @@ -2020,6 +2025,8 @@ CREATE TABLE `test_standards` ( `content` text COMMENT '内容', `attachment` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '附件', `time` date DEFAULT NULL COMMENT '数据创建时间', + `humidity_requirements` varchar(255) DEFAULT NULL COMMENT '湿度要求', + `temperature_requirements` varchar(255) DEFAULT NULL COMMENT '温度要求', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; @@ -2136,18 +2143,18 @@ INSERT INTO `equipment` (`id`, `create_by`, `create_time`, `update_by`, `update_ ('1853630781476937729', '张茹', '2024-11-05 10:49:52', '张茹', '2024-11-05 10:50:23', NULL, '测试名称', '测试型号', '测试出厂编号2', '测试管理编号', '2024-11-05', NULL, NULL), ('1861215857535426561', 'zhangru', '2024-11-26 09:10:15', 'zhangru', '2024-11-26 09:10:38', NULL, '测试名称1', '测试型号1', '12312uu1261', 'wd123245321', '2024-11-29', NULL, NULL); -INSERT INTO `experiment` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `experiment_no`, `name`, `type`, `start_date`, `radiation_source_type`, `client_name`, `sample_model`, `supervisor`, `status`, `end_date`, `deviation_equipment`, `irradiation_board`, `deviation_condition`, `sample_info`, `copy_count`) VALUES -('1863780910170206210', 'zhangru', '2024-12-03 11:02:51', 'zhangru', '2024-12-03 15:21:55', 'A01', 'NO-20241203110100', '测试试验名称', '2', '2024-12-03 11:01:21', 'HFS', '测试账号', NULL, '1862644776694280193', '试验完成', '2024-12-24 11:01:23', '[{\"key\":\"d26627b1d2f04945abd55c4caf289892\",\"sampleModel\":\"测试样品型号\",\"equipmentModel\":\"测试设备型号\",\"offsetCondition\":\"测试设备名称\",\"load\":\"2024-12-04\",\"equipmentType\":\"测试设备类型\"}]', '[{\"key\":\"a8f69aeeabff43af936fe7fca570b51a\",\"sampleModel\":\"测试样品型号\",\"irradiationBoardNumber\":\"测试辐照板数量\",\"irradiationBoardCode\":\"测试辐照板编号\",\"measurementValidity\":\"2024-12-03\",\"sourceArea\":\"11111111\"}]', '[{\"key\":\"21f7dd91b77e4a22a6b6e8da99585a5a\",\"sampleModel\":\"测试样品型号\",\"sampleNumber\":\"测试样品编号\",\"offsetCondition\":\"测试偏执条件\",\"load\":\"测试负载\"}]', '[{\"key\":\"1eada3802f3b4874ab24540eabd55c5f\",\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', 2), -('1863782858663489537', 'zhangru', '2024-12-03 11:02:51', 'zhangru', '2024-12-03 11:11:22', 'A01', 'NO-20241203031035', '测试试验名称-1', '2', '2024-12-11 11:11:13', 'HFS', '测试账号', NULL, '1862644776694280193', '试验前', '2024-12-31 11:10:51', '[{\"offsetCondition\":\"测试设备名称\",\"equipmentModel\":\"测试设备型号\",\"sampleModel\":\"测试样品型号\",\"key\":\"d26627b1d2f04945abd55c4caf289892\",\"equipmentType\":\"测试设备类型\"}]', '[{\"irradiationBoardCode\":\"测试辐照板编号\",\"irradiationBoardNumber\":\"测试辐照板数量\",\"sampleModel\":\"测试样品型号\",\"key\":\"a8f69aeeabff43af936fe7fca570b51a\",\"measurementValidity\":\"2024-12-04\",\"sourceArea\":\"20\"}]', '[{\"key\":\"21f7dd91b77e4a22a6b6e8da99585a5a\",\"sampleModel\":\"测试样品型号\",\"sampleNumber\":\"测试样品编号\",\"offsetCondition\":\"测试偏执条件\",\"load\":\"测试负载\"}]', '[{\"key\":\"1eada3802f3b4874ab24540eabd55c5f\",\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', 0), -('1863782878380912641', 'zhangru', '2024-12-03 11:02:51', 'zhangru', '2024-12-03 11:11:49', 'A01', 'NO-20241203031040', '测试试验名称-2', '2', '2024-12-03 11:11:44', 'HFS', '测试账号', NULL, '1862644776694280193', '试验前', '2024-12-31 11:11:48', '[{\"offsetCondition\":\"测试设备名称\",\"equipmentModel\":\"测试设备型号\",\"sampleModel\":\"测试样品型号\",\"key\":\"d26627b1d2f04945abd55c4caf289892\",\"equipmentType\":\"测试设备类型\"}]', '[{\"irradiationBoardCode\":\"测试辐照板编号\",\"irradiationBoardNumber\":\"测试辐照板数量\",\"sampleModel\":\"测试样品型号\",\"key\":\"a8f69aeeabff43af936fe7fca570b51a\"}]', '[{\"key\":\"21f7dd91b77e4a22a6b6e8da99585a5a\",\"sampleModel\":\"测试样品型号\",\"sampleNumber\":\"测试样品编号\",\"offsetCondition\":\"测试偏执条件\",\"load\":\"测试负载\"}]', '[{\"key\":\"1eada3802f3b4874ab24540eabd55c5f\",\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', 0), -('1863851214359851010', 'zhangru', '2024-12-03 15:42:13', 'caoxiang', '2024-12-03 19:07:41', 'A01', 'NO-20241203154146', '测试', '1', '2024-12-03 15:42:06', 'HFS', '测试账号', NULL, '1862644776694280193', '试验完成', '2024-12-31 15:42:09', '[]', '[]', '[{\"key\":\"9adb15cdcf334a0bb82cac38cdb78c46\",\"sampleModel\":\"1\",\"sampleNumber\":\"1\",\"offsetCondition\":\"1\",\"load\":\"1\"}]', '[{\"key\":\"6897e763b0584bf0acfdd1e76af888e3\",\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/4932.jpg_wh300_1733222894077.jpg\"},{\"key\":\"1e58c71c8d784a3d81f5bca0e4d82e6d\",\"sampleType\":\"测试\",\"sampleModel\":\"测试\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/v2-5fb13110e1de13d4c11e6e7f5b8026da_r_1733222899392.jpg\"}]', 1), -('1863898586251096065', 'zhangru', '2024-12-03 15:42:13', 'zhangru', '2024-12-03 19:24:14', 'A01', 'NO-20241203105027', '测试-1', '1', '2024-12-03 19:08:44', 'HFS', '测试账号', NULL, '1862644776694280193', '试验进行中', '2024-12-19 19:08:45', '[]', '[]', '[{\"key\":\"d7bcd467d3404fc9a01bf7ca2dcda61a\",\"sampleModel\":\"测试\",\"sampleNumber\":\"1\",\"offsetCondition\":\"1\",\"load\":\"1\"}]', '[{\"key\":\"6897e763b0584bf0acfdd1e76af888e3\",\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/4932.jpg_wh300_1733222894077.jpg\"},{\"key\":\"1e58c71c8d784a3d81f5bca0e4d82e6d\",\"sampleType\":\"测试\",\"sampleModel\":\"测试\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/v2-5fb13110e1de13d4c11e6e7f5b8026da_r_1733222899392.jpg\"}]', 0), -('1864108428710473730', 'zhangru', '2024-12-04 08:44:18', 'zhangru', '2024-12-04 08:52:04', 'A01', 'NO-20241204084307', '测试试验名称11', '2', '2024-12-04 08:43:26', 'HFS', '测试账号', NULL, '1862644776694280193', '试验完成', '2024-12-25 08:43:29', '[{\"key\":\"fa9fc63a13a044d791e161b5650c4a96\",\"sampleModel\":\"样品型号\",\"equipmentModel\":\"11\",\"offsetCondition\":\"11\",\"load\":\"2024-12-04\",\"equipmentType\":\"1111\"}]', '[]', '[{\"key\":\"7fa7c7d5d759471388df9cf780a643a1\",\"sampleModel\":\"样品型号\",\"sampleNumber\":\"1\",\"offsetCondition\":\"1\",\"load\":\"1\"}]', '[{\"key\":\"aaa8e7a4d33a401e953c6ca4fdd5612e\",\"sampleType\":\"样品类型\",\"sampleModel\":\"样品型号\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/641_1733273034949.jpg\"}]', 1), -('1864110227236417538', 'zhangru', '2024-12-04 08:44:18', 'zhangru', '2024-12-04 08:51:26', 'A01', 'NO-20241204005126', '测试试验名称11-1', '2', NULL, 'HFS', '测试账号', NULL, '1862644776694280193', '试验前', NULL, '[{\"offsetCondition\":\"11\",\"equipmentModel\":\"11\",\"sampleModel\":\"样品型号\",\"key\":\"fa9fc63a13a044d791e161b5650c4a96\",\"equipmentType\":\"1111\"}]', '[]', '[{\"key\":\"7fa7c7d5d759471388df9cf780a643a1\",\"sampleModel\":\"样品型号\",\"sampleNumber\":\"1\",\"offsetCondition\":\"1\",\"load\":\"1\"}]', '[{\"key\":\"aaa8e7a4d33a401e953c6ca4fdd5612e\",\"sampleType\":\"样品类型\",\"sampleModel\":\"样品型号\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/641_1733273034949.jpg\"}]', 0), -('1864210739042545665', 'zhangru', '2024-12-04 15:30:50', 'zhangru', '2024-12-04 20:26:28', 'A01', 'NO-20241204152427', '理化所试验', '1', '2024-12-05 15:25:00', 'GFS', '测试委托方', NULL, '1862644776694280193', '试验进行中', '2024-12-07 15:25:08', '[{\"key\":\"48f5af32d00c40b39debb18276fcb488\",\"sampleModel\":\"型号1\",\"equipmentModel\":\"1\",\"offsetCondition\":\"2\",\"load\":\"2024-12-04\",\"equipmentType\":\"类型1\"}]', '[{\"key\":\"4e21e24583d04de8a766bc3c49d8aae9\",\"sampleModel\":\"型号1\",\"irradiationBoardNumber\":\"2\",\"irradiationBoardCode\":\"1\",\"measurementValidity\":\"2024-12-04\",\"sourceArea\":\"33\"},{\"key\":\"0f0ec662569b4e9c8e96fb0c15574e9d\",\"sampleModel\":\"型号1\",\"irradiationBoardNumber\":\"3\",\"irradiationBoardCode\":\"2\",\"measurementValidity\":\"2024-12-04\",\"sourceArea\":\"44\"}]', '[{\"key\":\"d79f6df8f0e84467a6064ae9be1477fa\",\"sampleModel\":\"型号1\",\"sampleNumber\":\"2\",\"offsetCondition\":\"动态偏执\",\"load\":\"1\"}]', '[{\"key\":\"696f92a4ae7f49be835886f0e6082c2d\",\"sampleType\":\"类型1\",\"sampleModel\":\"型号1\",\"sampleBatch\":\"4\",\"sampleManufacturer\":\"厂家1\"},{\"key\":\"e9526fd298cf4ab1bcdeb3937d8ad87e\",\"sampleType\":\"这是我手动编辑的\",\"sampleModel\":\"1\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"3\"}]', 0), -('1864227118588194817', 'zhangru', '2024-12-04 16:35:55', 'admin', '2024-12-05 10:43:21', 'A01', 'NO-20241204160801', '理化所试验1', '1', '2024-12-04 16:14:50', 'GFS', '测试委托方', NULL, '1862644776694280193', '试验完成', '2024-12-14 16:14:40', '[{\"key\":\"c7e3d693ff5a4c1488c01dc125a7855f\",\"sampleModel\":\"2\",\"equipmentModel\":\"33\",\"offsetCondition\":\"444\",\"load\":\"2024-12-04\",\"equipmentType\":\"ff\"}]', '[{\"key\":\"c091e6c2d49745aeb0720275c9f89221\",\"sampleModel\":\"2\",\"irradiationBoardNumber\":\"55\",\"irradiationBoardCode\":\"1-2-3-4-5\",\"measurementValidity\":\"2024-12-04\",\"sourceArea\":\"5*5,6*6\"},{\"key\":\"4575d16403e344329a22ec1af2103ced\",\"sampleModel\":\"2\",\"irradiationBoardNumber\":\"5\",\"irradiationBoardCode\":\"2\",\"measurementValidity\":\"2024-12-04\",\"sourceArea\":\"6\"}]', '[{\"key\":\"c12728d146924964b33fd01fcf70b016\",\"sampleModel\":\"2\",\"sampleNumber\":\"2,9,8\",\"offsetCondition\":\"动态偏置\",\"load\":\"111\"}]', '[{\"key\":\"b006521b2772416e8938ed5dc5df36b8\",\"sampleType\":\"1\",\"sampleModel\":\"2\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"4\",\"sampleImage\":\"\"},{\"key\":\"c543dbe5ab9747469943b0f9a2b7e12e\",\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"}]', 2), -('1864257279610155010', 'zhangru', '2024-12-04 16:35:55', 'caoxiang', '2024-12-04 22:36:02', 'A01', 'NO-20241204103546', '理化所试验1-1', '1', NULL, 'GFS', '测试委托方', NULL, '1862644776694280193', '试验进行中', NULL, '[{\"offsetCondition\":\"444\",\"equipmentModel\":\"33\",\"sampleModel\":\"2\",\"key\":\"c7e3d693ff5a4c1488c01dc125a7855f\",\"equipmentType\":\"ff\"}]', '[{\"irradiationBoardCode\":\"1-2-3-4-5\",\"irradiationBoardNumber\":\"55\",\"sampleModel\":\"2\",\"key\":\"c091e6c2d49745aeb0720275c9f89221\"},{\"irradiationBoardCode\":\"2\",\"irradiationBoardNumber\":\"5\",\"sampleModel\":\"2\",\"key\":\"4575d16403e344329a22ec1af2103ced\"}]', '[{\"key\":\"c12728d146924964b33fd01fcf70b016\",\"sampleModel\":\"2\",\"sampleNumber\":\"2,9,8\",\"offsetCondition\":\"动态偏置\",\"load\":\"111\"}]', '[{\"key\":\"b006521b2772416e8938ed5dc5df36b8\",\"sampleType\":\"1\",\"sampleModel\":\"2\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"4\",\"sampleImage\":\"\"}]', 0), -('1864257450679037954', 'zhangru', '2024-12-04 16:35:55', 'caoxiang', '2024-12-04 23:07:12', 'A01', 'NO-20241204103627', '理化所试验1-2', '1', NULL, 'GFS', '测试委托方', NULL, '1862644776694280193', '试验进行中', NULL, '[{\"offsetCondition\":\"444\",\"equipmentModel\":\"33\",\"sampleModel\":\"2\",\"key\":\"c7e3d693ff5a4c1488c01dc125a7855f\",\"equipmentType\":\"ff\"}]', '[{\"irradiationBoardCode\":\"1-2-3-4-5\",\"irradiationBoardNumber\":\"55\",\"sampleModel\":\"2\",\"key\":\"c091e6c2d49745aeb0720275c9f89221\"},{\"irradiationBoardCode\":\"2\",\"irradiationBoardNumber\":\"5\",\"sampleModel\":\"2\",\"key\":\"4575d16403e344329a22ec1af2103ced\"}]', '[{\"key\":\"c12728d146924964b33fd01fcf70b016\",\"sampleModel\":\"2\",\"sampleNumber\":\"2,9,8\",\"offsetCondition\":\"动态偏置\",\"load\":\"111\"}]', '[{\"key\":\"b006521b2772416e8938ed5dc5df36b8\",\"sampleType\":\"1\",\"sampleModel\":\"2\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"4\",\"sampleImage\":\"\"}]', 0); +INSERT INTO `experiment` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `experiment_no`, `name`, `type`, `start_date`, `radiation_source_type`, `client_name`, `sample_model`, `supervisor`, `status`, `end_date`, `deviation_equipment`, `irradiation_board`, `deviation_condition`, `sample_info`, `copy_count`, `files`) VALUES +('1863780910170206210', 'zhangru', '2024-12-03 11:02:51', 'zhangru', '2024-12-03 15:21:55', 'A01', 'NO-20241203110100', '测试试验名称', '2', '2024-12-03 11:01:21', 'HFS', '测试账号', NULL, '1862644776694280193', '试验完成', '2024-12-24 11:01:23', '[{\"key\":\"d26627b1d2f04945abd55c4caf289892\",\"sampleModel\":\"测试样品型号\",\"equipmentModel\":\"测试设备型号\",\"offsetCondition\":\"测试设备名称\",\"load\":\"2024-12-04\",\"equipmentType\":\"测试设备类型\"}]', '[{\"key\":\"a8f69aeeabff43af936fe7fca570b51a\",\"sampleModel\":\"测试样品型号\",\"irradiationBoardNumber\":\"测试辐照板数量\",\"irradiationBoardCode\":\"测试辐照板编号\",\"measurementValidity\":\"2024-12-03\",\"sourceArea\":\"11111111\"}]', '[{\"key\":\"21f7dd91b77e4a22a6b6e8da99585a5a\",\"sampleModel\":\"测试样品型号\",\"sampleNumber\":\"测试样品编号\",\"offsetCondition\":\"测试偏执条件\",\"load\":\"测试负载\"}]', '[{\"key\":\"1eada3802f3b4874ab24540eabd55c5f\",\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', 2, NULL), +('1863782858663489537', 'zhangru', '2024-12-03 11:02:51', 'zhangru', '2024-12-03 11:11:22', 'A01', 'NO-20241203031035', '测试试验名称-1', '2', '2024-12-11 11:11:13', 'HFS', '测试账号', NULL, '1862644776694280193', '试验前', '2024-12-31 11:10:51', '[{\"offsetCondition\":\"测试设备名称\",\"equipmentModel\":\"测试设备型号\",\"sampleModel\":\"测试样品型号\",\"key\":\"d26627b1d2f04945abd55c4caf289892\",\"equipmentType\":\"测试设备类型\"}]', '[{\"irradiationBoardCode\":\"测试辐照板编号\",\"irradiationBoardNumber\":\"测试辐照板数量\",\"sampleModel\":\"测试样品型号\",\"key\":\"a8f69aeeabff43af936fe7fca570b51a\",\"measurementValidity\":\"2024-12-04\",\"sourceArea\":\"20\"}]', '[{\"key\":\"21f7dd91b77e4a22a6b6e8da99585a5a\",\"sampleModel\":\"测试样品型号\",\"sampleNumber\":\"测试样品编号\",\"offsetCondition\":\"测试偏执条件\",\"load\":\"测试负载\"}]', '[{\"key\":\"1eada3802f3b4874ab24540eabd55c5f\",\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', 0, NULL), +('1863782878380912641', 'zhangru', '2024-12-03 11:02:51', 'zhangru', '2024-12-03 11:11:49', 'A01', 'NO-20241203031040', '测试试验名称-2', '2', '2024-12-03 11:11:44', 'HFS', '测试账号', NULL, '1862644776694280193', '试验前', '2024-12-31 11:11:48', '[{\"offsetCondition\":\"测试设备名称\",\"equipmentModel\":\"测试设备型号\",\"sampleModel\":\"测试样品型号\",\"key\":\"d26627b1d2f04945abd55c4caf289892\",\"equipmentType\":\"测试设备类型\"}]', '[{\"irradiationBoardCode\":\"测试辐照板编号\",\"irradiationBoardNumber\":\"测试辐照板数量\",\"sampleModel\":\"测试样品型号\",\"key\":\"a8f69aeeabff43af936fe7fca570b51a\"}]', '[{\"key\":\"21f7dd91b77e4a22a6b6e8da99585a5a\",\"sampleModel\":\"测试样品型号\",\"sampleNumber\":\"测试样品编号\",\"offsetCondition\":\"测试偏执条件\",\"load\":\"测试负载\"}]', '[{\"key\":\"1eada3802f3b4874ab24540eabd55c5f\",\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', 0, NULL), +('1863851214359851010', 'zhangru', '2024-12-03 15:42:13', 'caoxiang', '2024-12-03 19:07:41', 'A01', 'NO-20241203154146', '测试', '1', '2024-12-03 15:42:06', 'HFS', '测试账号', NULL, '1862644776694280193', '试验完成', '2024-12-31 15:42:09', '[]', '[]', '[{\"key\":\"9adb15cdcf334a0bb82cac38cdb78c46\",\"sampleModel\":\"1\",\"sampleNumber\":\"1\",\"offsetCondition\":\"1\",\"load\":\"1\"}]', '[{\"key\":\"6897e763b0584bf0acfdd1e76af888e3\",\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/4932.jpg_wh300_1733222894077.jpg\"},{\"key\":\"1e58c71c8d784a3d81f5bca0e4d82e6d\",\"sampleType\":\"测试\",\"sampleModel\":\"测试\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/v2-5fb13110e1de13d4c11e6e7f5b8026da_r_1733222899392.jpg\"}]', 1, NULL), +('1863898586251096065', 'zhangru', '2024-12-03 15:42:13', 'zhangru', '2024-12-03 19:24:14', 'A01', 'NO-20241203105027', '测试-1', '1', '2024-12-03 19:08:44', 'HFS', '测试账号', NULL, '1862644776694280193', '试验进行中', '2024-12-19 19:08:45', '[]', '[]', '[{\"key\":\"d7bcd467d3404fc9a01bf7ca2dcda61a\",\"sampleModel\":\"测试\",\"sampleNumber\":\"1\",\"offsetCondition\":\"1\",\"load\":\"1\"}]', '[{\"key\":\"6897e763b0584bf0acfdd1e76af888e3\",\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/4932.jpg_wh300_1733222894077.jpg\"},{\"key\":\"1e58c71c8d784a3d81f5bca0e4d82e6d\",\"sampleType\":\"测试\",\"sampleModel\":\"测试\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/v2-5fb13110e1de13d4c11e6e7f5b8026da_r_1733222899392.jpg\"}]', 0, NULL), +('1864108428710473730', 'zhangru', '2024-12-04 08:44:18', 'zhangru', '2024-12-04 08:52:04', 'A01', 'NO-20241204084307', '测试试验名称11', '2', '2024-12-04 08:43:26', 'HFS', '测试账号', NULL, '1862644776694280193', '试验完成', '2024-12-25 08:43:29', '[{\"key\":\"fa9fc63a13a044d791e161b5650c4a96\",\"sampleModel\":\"样品型号\",\"equipmentModel\":\"11\",\"offsetCondition\":\"11\",\"load\":\"2024-12-04\",\"equipmentType\":\"1111\"}]', '[]', '[{\"key\":\"7fa7c7d5d759471388df9cf780a643a1\",\"sampleModel\":\"样品型号\",\"sampleNumber\":\"1\",\"offsetCondition\":\"1\",\"load\":\"1\"}]', '[{\"key\":\"aaa8e7a4d33a401e953c6ca4fdd5612e\",\"sampleType\":\"样品类型\",\"sampleModel\":\"样品型号\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/641_1733273034949.jpg\"}]', 1, NULL), +('1864110227236417538', 'zhangru', '2024-12-04 08:44:18', 'admin', '2024-12-05 13:46:07', 'A01', 'NO-20241204005126', '测试试验名称11-1', '2', '2024-12-05 13:45:45', 'HFS', '测试账号', NULL, '1862644776694280193', '试验前', '2024-12-05 13:45:49', '[{\"offsetCondition\":\"11\",\"equipmentModel\":\"11\",\"sampleModel\":\"样品型号\",\"key\":\"fa9fc63a13a044d791e161b5650c4a96\",\"equipmentType\":\"1111\"}]', '[]', '[{\"key\":\"7fa7c7d5d759471388df9cf780a643a1\",\"sampleModel\":\"样品型号\",\"sampleNumber\":\"1\",\"offsetCondition\":\"1\",\"load\":\"1\"}]', '[{\"key\":\"aaa8e7a4d33a401e953c6ca4fdd5612e\",\"sampleType\":\"样品类型\",\"sampleModel\":\"样品型号\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/641_1733273034949.jpg\"},{\"key\":\"748ee8ee11b044fba61be3b39f11d959\",\"sampleType\":\"1\",\"sampleModel\":\"2\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"4\"}]', 0, NULL), +('1864210739042545665', 'zhangru', '2024-12-04 15:30:50', 'zhangru', '2024-12-04 20:26:28', 'A01', 'NO-20241204152427', '理化所试验', '1', '2024-12-05 15:25:00', 'GFS', '测试委托方', NULL, '1862644776694280193', '试验进行中', '2024-12-07 15:25:08', '[{\"key\":\"48f5af32d00c40b39debb18276fcb488\",\"sampleModel\":\"型号1\",\"equipmentModel\":\"1\",\"offsetCondition\":\"2\",\"load\":\"2024-12-04\",\"equipmentType\":\"类型1\"}]', '[{\"key\":\"4e21e24583d04de8a766bc3c49d8aae9\",\"sampleModel\":\"型号1\",\"irradiationBoardNumber\":\"2\",\"irradiationBoardCode\":\"1\",\"measurementValidity\":\"2024-12-04\",\"sourceArea\":\"33\"},{\"key\":\"0f0ec662569b4e9c8e96fb0c15574e9d\",\"sampleModel\":\"型号1\",\"irradiationBoardNumber\":\"3\",\"irradiationBoardCode\":\"2\",\"measurementValidity\":\"2024-12-04\",\"sourceArea\":\"44\"}]', '[{\"key\":\"d79f6df8f0e84467a6064ae9be1477fa\",\"sampleModel\":\"型号1\",\"sampleNumber\":\"2\",\"offsetCondition\":\"动态偏执\",\"load\":\"1\"}]', '[{\"key\":\"696f92a4ae7f49be835886f0e6082c2d\",\"sampleType\":\"类型1\",\"sampleModel\":\"型号1\",\"sampleBatch\":\"4\",\"sampleManufacturer\":\"厂家1\"},{\"key\":\"e9526fd298cf4ab1bcdeb3937d8ad87e\",\"sampleType\":\"这是我手动编辑的\",\"sampleModel\":\"1\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"3\"}]', 0, NULL), +('1864227118588194817', 'zhangru', '2024-12-04 16:35:55', 'admin', '2024-12-05 13:45:15', 'A01', 'NO-20241204160801', '理化所试验1', '1', '2024-12-04 16:14:50', 'GFS', '测试委托方', NULL, '1862644776694280193', '试验完成', '2024-12-14 16:14:40', '[{\"key\":\"c7e3d693ff5a4c1488c01dc125a7855f\",\"sampleModel\":\"2\",\"equipmentModel\":\"33\",\"offsetCondition\":\"444\",\"load\":\"2024-12-04\",\"equipmentType\":\"ff\"}]', '[{\"key\":\"c091e6c2d49745aeb0720275c9f89221\",\"sampleModel\":\"2\",\"irradiationBoardNumber\":\"55\",\"irradiationBoardCode\":\"1-2-3-4-5\",\"measurementValidity\":\"2024-12-04\",\"sourceArea\":\"5*5,6*6\"},{\"key\":\"4575d16403e344329a22ec1af2103ced\",\"sampleModel\":\"2\",\"irradiationBoardNumber\":\"5\",\"irradiationBoardCode\":\"2\",\"measurementValidity\":\"2024-12-04\",\"sourceArea\":\"6\"}]', '[{\"key\":\"c12728d146924964b33fd01fcf70b016\",\"sampleModel\":\"2\",\"sampleNumber\":\"2,9,8\",\"offsetCondition\":\"动态偏置\",\"load\":\"111\"}]', '[{\"key\":\"b006521b2772416e8938ed5dc5df36b8\",\"sampleType\":\"1\",\"sampleModel\":\"2\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"4\",\"sampleImage\":\"\"},{\"key\":\"c543dbe5ab9747469943b0f9a2b7e12e\",\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"}]', 2, NULL), +('1864257279610155010', 'zhangru', '2024-12-04 16:35:55', 'admin', '2024-12-05 14:23:57', 'A01', 'NO-20241204103546', '理化所试验1-1', '1', NULL, 'GFS', '测试委托方', NULL, '1862644776694280193', '试验进行中', NULL, '[{\"offsetCondition\":\"444\",\"equipmentModel\":\"33\",\"sampleModel\":\"2\",\"key\":\"c7e3d693ff5a4c1488c01dc125a7855f\",\"equipmentType\":\"ff\"}]', '[{\"irradiationBoardCode\":\"1-2-3-4-5\",\"irradiationBoardNumber\":\"55\",\"sampleModel\":\"2\",\"key\":\"c091e6c2d49745aeb0720275c9f89221\"},{\"irradiationBoardCode\":\"2\",\"irradiationBoardNumber\":\"5\",\"sampleModel\":\"2\",\"key\":\"4575d16403e344329a22ec1af2103ced\"}]', '[{\"key\":\"c12728d146924964b33fd01fcf70b016\",\"sampleModel\":\"2\",\"sampleNumber\":\"2,9,8\",\"offsetCondition\":\"动态偏置\",\"load\":\"111\"}]', '[{\"key\":\"b006521b2772416e8938ed5dc5df36b8\",\"sampleType\":\"1\",\"sampleModel\":\"2\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"4\",\"sampleImage\":\"\"}]', 0, NULL), +('1864257450679037954', 'zhangru', '2024-12-04 16:35:55', 'caoxiang', '2024-12-04 23:07:12', 'A01', 'NO-20241204103627', '理化所试验1-2', '1', NULL, 'GFS', '测试委托方', NULL, '1862644776694280193', '试验进行中', NULL, '[{\"offsetCondition\":\"444\",\"equipmentModel\":\"33\",\"sampleModel\":\"2\",\"key\":\"c7e3d693ff5a4c1488c01dc125a7855f\",\"equipmentType\":\"ff\"}]', '[{\"irradiationBoardCode\":\"1-2-3-4-5\",\"irradiationBoardNumber\":\"55\",\"sampleModel\":\"2\",\"key\":\"c091e6c2d49745aeb0720275c9f89221\"},{\"irradiationBoardCode\":\"2\",\"irradiationBoardNumber\":\"5\",\"sampleModel\":\"2\",\"key\":\"4575d16403e344329a22ec1af2103ced\"}]', '[{\"key\":\"c12728d146924964b33fd01fcf70b016\",\"sampleModel\":\"2\",\"sampleNumber\":\"2,9,8\",\"offsetCondition\":\"动态偏置\",\"load\":\"111\"}]', '[{\"key\":\"b006521b2772416e8938ed5dc5df36b8\",\"sampleType\":\"1\",\"sampleModel\":\"2\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"4\",\"sampleImage\":\"\"}]', 0, NULL); INSERT INTO `experiment_anneal_process` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `radiation_source`, `measurement_rate`, `radiation_standard`, `anneal_temperature`, `comment`, `exception_record`, `radiation_detail`, `experiment_id`, `anneal_start_time`, `anneal_end_time`, `bias_condition`, `bias_equipment`) VALUES ('1729680501092', 'admin', '2024-10-23 18:48:46', 'admin', '2024-10-23 18:49:30', 'A01', NULL, NULL, NULL, '2', '12', '1', NULL, '1845361500624625666', '2024-10-23 18:48:21', '2024-10-23 18:48:21', '[{\"key\":\"1\",\"sample_model\":\"2\",\"sample_code\":\"2\",\"paranoid_condition\":\"1\"}]', '[{\"key\":\"1\",\"sample_model\":\"1\",\"equipment_model\":\"1\",\"equipment_name\":\"1\",\"nalifespanme\":\"1\",\"equipment_type\":\"1\"}]'), @@ -2939,7 +2946,11 @@ INSERT INTO `experiment_log` (`id`, `create_by`, `create_time`, `update_by`, `up ('1864317743379607554', '曹翔', '2024-12-04 22:36:02', NULL, NULL, 'A01', '1864257279610155010', '编辑辐照过程'), ('1864325585029394433', '曹翔', '2024-12-04 23:07:12', NULL, NULL, 'A01', '1864257450679037954', '修改实验信息'), ('1864325585046171649', '曹翔', '2024-12-04 23:07:12', NULL, NULL, 'A01', '1864257450679037954', '添加辐照过程'), -('1864500780188921857', '管理员', '2024-12-05 10:43:21', NULL, NULL, 'A01', '1864227118588194817', '修改实验信息'); +('1864500780188921857', '管理员', '2024-12-05 10:43:21', NULL, NULL, 'A01', '1864227118588194817', '修改实验信息'), +('1864546556484100097', '管理员', '2024-12-05 13:45:15', NULL, NULL, 'A01', '1864227118588194817', '修改实验信息'), +('1864546774034259970', '管理员', '2024-12-05 13:46:07', NULL, NULL, 'A01', '1864110227236417538', '修改实验信息'), +('1864556296136138753', '管理员', '2024-12-05 14:23:57', NULL, NULL, 'A01', '1864257279610155010', '添加测试过程'), +('1864556296144527362', '管理员', '2024-12-05 14:23:57', NULL, NULL, 'A01', '1864257279610155010', '修改实验信息'); INSERT INTO `experiment_radiation_process` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `radiation_source`, `measurement_rate`, `radiation_standard`, `environmental_temperature`, `comment`, `exception_record`, `radiation_detail`, `experiment_id`, `radiation_end_time`, `radiation_start_time`) VALUES ('1729671176985', 'admin', '2024-10-23 16:13:25', NULL, NULL, 'A01', '质子加速器', '1', '213', '1', '1', '1', '{\"value\":\"123\",\"plan_dose_rate\":\"1\",\"actual_dose_rate\":\"1\",\"energy\":\"1\",\"scanning_area\":\"1\",\"radiation_environment\":\"真空\",\"x\":\"1\",\"y\":\"1\",\"test_type\":\"辐照\",\"plan_dose_point\":\"\",\"actual_dose_point\":\"\",\"startDate\":\"2024-10-23T08:12:56.986Z\",\"endDate\":\"2024-10-23T08:12:56.986Z\"}', '1845361500624625666', NULL, NULL), @@ -3021,58 +3032,58 @@ INSERT INTO `experiment_rating` (`id`, `create_by`, `create_time`, `update_by`, ('1864215098849587201', 'zhangru', '2024-12-04 15:48:10', NULL, NULL, 'A01', '1863851214359851010', '1860866034718285825', 906, 5, 5, 5, 5), ('1864256148079210497', 'zhangru', '2024-12-04 18:31:17', NULL, NULL, 'A01', '1864227118588194817', '1860866034718285825', 924, 44, 3, 2, 2); -INSERT INTO `experiment_report` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `experiment_id`, `sample_info`, `img_urls`, `description`, `auditor`, `proofreader`, `confirmer`, `status`, `report_name`) VALUES -('1849726313710592001', 'admin', '2024-10-25 16:14:54', NULL, NULL, 'A01', '1849101192671113217', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"},{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"},{\"key\":2,\"sampleType\":\"3\",\"sampleModel\":\"3\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"3\"}]', '/oss/physical/temp/1728699098531_1729844083375.png', 'qqq', 'admin', 'admin', 'admin', 'INIT', NULL), -('1850132258483707905', 'admin', '2024-10-26 19:07:59', 'confirmer', '2024-10-26 19:59:15', 'A01', '1849101192671113217', '[{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"},{\"key\":2,\"sampleType\":\"3\",\"sampleModel\":\"3\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"3\"}]', '/oss/physical/temp/1728699098531_1729940863790.png,/oss/physical/temp/1728699098531_1729940868197.png', '111', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'PASSED', NULL), -('1850146368625680385', 'admin', '2024-10-26 20:04:03', '校对员', '2024-10-26 21:32:32', 'A01', '1849101192671113217', '[{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"},{\"key\":2,\"sampleType\":\"3\",\"sampleModel\":\"3\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"3\"}]', '/oss/physical/temp/1728699098531_1729944234667.png', '123', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'PROOFREAD_PASS', NULL), -('1850154164968595458', 'admin', '2024-10-26 20:35:02', 'admin', '2024-10-26 22:27:11', 'A01', '1849101192671113217', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"http://58.215.212.230:8005/oss/physical/temp/1728699098531_1729951598957.png\"}]', '/oss/physical/temp/1728699098531_1729952817269.png', '1', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', NULL), -('1850163150732238849', 'admin', '2024-10-26 21:10:44', '校对员', '2024-10-26 21:28:54', 'A01', '1849101192671113217', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"},{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"}]', '/oss/physical/temp/1728699098531_1729948236577.png', '11', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'REJECT', NULL), -('1850168741785608193', '校对员', '2024-10-26 21:32:57', '校对员', '2024-10-26 21:38:48', NULL, '1849101192671113217', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"}]', '/oss/physical/temp/1728699098531_1729949908711.png', '454', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'REJECT', NULL), -('1850168880935837697', '校对员', '2024-10-26 21:33:30', NULL, NULL, NULL, '1849101192671113217', '[]', '', '000', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', NULL), -('1850467033677406210', 'caoxiang', '2024-10-27 17:18:16', NULL, NULL, NULL, '1845361500624625666', '[{\"key\":1,\"sampleType\":\"1233\",\"sampleModel\":\"456\",\"sampleBatch\":\"123\",\"sampleManufacturer\":\"123000\",\"sampleImage\":\"http://58.215.212.230:8005/oss/physical/temp/WX20241012-0030312x_1729951578661.png\"}]', '/oss/physical/temp/1728699098531_1730020688543.png', '1', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', NULL), -('1857623120755646465', 'admin', '2024-11-16 11:14:00', NULL, NULL, 'A01', '1856996393805242370', '[]', '', '11', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', NULL), -('1857749056675209218', 'caoxiang', '2024-11-16 19:34:25', NULL, NULL, NULL, '1856996393805242370', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"},{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"}]', '', '11', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', NULL), -('1857749175327875073', 'caoxiang', '2024-11-16 19:34:53', NULL, NULL, NULL, '1856996393805242370', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"}]', '/oss/physical/temp/1728699098531_1731756881959.png', '1', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', NULL), -('1859166030261215233', 'caoxiang', '2024-11-20 17:24:58', NULL, NULL, 'A01', '1858789172747259906', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"},{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"},{\"key\":2,\"sampleType\":\"2\",\"sampleModel\":\"3\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"3\"},{\"key\":3,\"sampleType\":\"3\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"}]', '', '测试', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', '121231-试验报告'), -('1859172591176081410', 'caoxiang', '2024-11-20 17:51:02', 'caoxiang', '2024-11-20 17:51:11', 'A01', '1858789172747259906', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"}]', '', '测试一下', '1842788885145956354', '1842788885145956354', '1842788885145956354', 'PASSED', '121231-试验报告'), -('1860882967547158529', 'zhangru', '2024-11-25 11:07:28', NULL, NULL, NULL, '1860876355205931009', '[]', '', '111111111', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', '测试名称-2-试验报告'), -('1860918317782999042', 'admin', '2024-11-25 13:27:56', NULL, NULL, 'A01', '1856969709571891202', '[]', '', '111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '66-1-试验报告'), -('1860919007947333634', 'zhangru', '2024-11-25 13:30:40', 'zhangru', '2024-11-25 13:30:50', NULL, '1860873025121492993', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"10\",\"sampleManufacturer\":\"测试生产厂家\",\"sampleImage\":\"\"}]', '', '11111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试名称-试验报告'), -('1860919782756917250', 'zhangru', '2024-11-25 13:33:45', NULL, NULL, NULL, '1859413068135620610', '[]', '', '1111111', '1842788885145956354', '1842788885145956354', '1850047065370501121', 'INIT', '测试0001-试验报告'), -('1860923697162428417', 'zhangru', '2024-11-25 13:49:18', 'zhangru', '2024-11-25 13:49:24', NULL, '1860921279146172418', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"http://58.215.212.230:8005/oss/physical/temp/微信图片_20241031164503_1732513485229.png\"},{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"http://58.215.212.230:8005/oss/physical/temp/微信图片_20241031164503_1732513681179.png\"}]', 'http://58.215.212.230:8005/oss/physical/temp/微信图片_20241031164503_1732513748442.png', '11111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试名称1-试验报告'), -('1860924552154521601', 'zhangru', '2024-11-25 13:52:42', 'zhangru', '2024-11-25 13:52:51', NULL, '1860924431467618306', '[]', '', '111111111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称1-试验报告'), -('1860924730613768194', 'zhangru', '2024-11-25 13:53:25', 'zhangru', '2024-11-25 13:53:29', NULL, '1860875593432244226', '[]', '', '1111111', '1850123707476451329', '1860866034718285825', '1850047065370501121', 'PROOFREAD_PASS', '测试名称-1-试验报告'), -('1860926631350706178', 'zhangru', '2024-11-25 14:00:58', 'zhangru', '2024-11-25 14:50:27', NULL, '1860925388435824642', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"10\",\"sampleManufacturer\":\"测试生产厂家\",\"sampleImage\":\"\"},{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"}]', 'http://58.215.212.230:8005/oss/physical/temp/微信图片_20241031164503_1732514474687.png', '1111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试名称-1-2-试验报告'), -('1861579542510514178', 'zhangru', '2024-11-27 09:15:24', NULL, NULL, NULL, '1860932561089929217', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/avator_1732617834655.jpg\"}]', '/oss/physical/temp/sketch_1732622793653_1732670111584.png,/oss/physical/temp/微信图片_20241031164503_1732670116175.png', '1111111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试名称1-1-试验报告'), -('1861579654129332225', 'zhangru', '2024-11-27 09:15:51', NULL, NULL, NULL, '1860932561089929217', '[{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"http://58.215.212.230:8005/oss/physical/temp/微信图片_20241031164503_1732513681179.png\"}]', '/oss/physical/temp/sketch_1732622793653_1732670138919.png,/oss/physical/temp/微信图片_20241031164503_1732670139028.png', '等等的点点滴滴', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试名称1-1-试验报告'), -('1861581901303197697', 'zhangru', '2024-11-27 09:24:46', 'zhangru', '2024-11-27 20:01:44', NULL, '1861580310676320257', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1732670237894.png\"}]', '/oss/physical/temp/sketch_1732622793653_1732670646657.png', '5555555', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称-试验报告'), -('1861581966692397057', 'zhangru', '2024-11-27 09:25:02', 'zhangru', '2024-11-28 08:47:46', NULL, '1861580310676320257', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1732670237894.png\"}]', '/oss/physical/temp/微信图片_20241031164503_1732670696024.png', '222222222', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称-试验报告'), -('1861935098853134338', 'zhangru', '2024-11-28 08:48:15', 'zhangru', '2024-11-28 09:02:06', NULL, '1861580310676320257', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1732670237894.png\"}]', '/oss/physical/temp/sketch_1732622793653_1732754888901.png,/oss/physical/temp/微信图片_20241031164503_1732754888917.png', '11111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称-试验报告'), -('1862653684053798914', 'zhangru', '2024-11-30 08:23:39', 'zhangru', '2024-11-30 08:24:03', 'A01', '1862644923750772738', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1732924652656.png\"}]', '', '11111111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'REJECT', '测试试验名称-试验报告'), -('1863385036583694337', 'zhangru', '2024-12-02 08:49:47', 'zhangru', '2024-12-02 08:52:47', 'A01', '1863381782466490369', '[]', '', '1111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试实验名称1111111111111111111111111111111111111111111111111111111111111111111-试验报告'), -('1863385458203521026', 'zhangru', '2024-12-02 08:51:28', 'zhangru', '2024-12-02 09:25:54', 'A01', '1863381782466490369', '[]', '', '1111111111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试实验名称1111111111111111111111111111111111111111111111111111111111111111111-试验报告'), -('1863390755139710978', 'zhangru', '2024-12-02 09:12:31', NULL, NULL, 'A01', '1863386296481312769', '[]', '', '1111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试实验名称复制1-试验报告'), -('1863400228415696898', 'zhangru', '2024-12-02 09:50:09', 'zhangru', '2024-12-02 10:06:15', 'A01', '1862700915955953665', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733103017593.png\"},{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733103934541.png\"},{\"key\":2,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733103969689.png\"},{\"key\":3,\"sampleType\":\"3\",\"sampleModel\":\"3\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"3\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104017200.png\"},{\"key\":4,\"sampleType\":\"4\",\"sampleModel\":\"4\",\"sampleBatch\":\"4\",\"sampleManufacturer\":\"4\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104025558.png\"},{\"key\":5,\"sampleType\":\"5\",\"sampleModel\":\"5\",\"sampleBatch\":\"5\",\"sampleManufacturer\":\"5\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104034454.png\"},{\"key\":6,\"sampleType\":\"6\",\"sampleModel\":\"6\",\"sampleBatch\":\"6\",\"sampleManufacturer\":\"6\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104043662.png\"},{\"key\":7,\"sampleType\":\"7\",\"sampleModel\":\"7\",\"sampleBatch\":\"7\",\"sampleManufacturer\":\"7\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104051962.png\"},{\"key\":8,\"sampleType\":\"8\",\"sampleModel\":\"8\",\"sampleBatch\":\"8\",\"sampleManufacturer\":\"8\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104060787.png\"},{\"key\":9,\"sampleType\":\"9\",\"sampleModel\":\"9\",\"sampleBatch\":\"9\",\"sampleManufacturer\":\"9\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104067880.png\"},{\"key\":10,\"sampleType\":\"10\",\"sampleModel\":\"10\",\"sampleBatch\":\"10\",\"sampleManufacturer\":\"10\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104079112.png\"},{\"key\":11,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":12,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":13,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":14,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"}]', '', '11111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'REJECT', '测试实验名称-试验报告'), -('1863416201474568194', 'zhangru', '2024-12-02 10:53:38', NULL, NULL, 'A01', '1862700915955953665', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733103017593.png\"},{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733103934541.png\"},{\"key\":2,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733103969689.png\"},{\"key\":3,\"sampleType\":\"3\",\"sampleModel\":\"3\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"3\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104017200.png\"},{\"key\":4,\"sampleType\":\"4\",\"sampleModel\":\"4\",\"sampleBatch\":\"4\",\"sampleManufacturer\":\"4\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104025558.png\"},{\"key\":5,\"sampleType\":\"5\",\"sampleModel\":\"5\",\"sampleBatch\":\"5\",\"sampleManufacturer\":\"5\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104034454.png\"},{\"key\":6,\"sampleType\":\"6\",\"sampleModel\":\"6\",\"sampleBatch\":\"6\",\"sampleManufacturer\":\"6\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104043662.png\"},{\"key\":7,\"sampleType\":\"7\",\"sampleModel\":\"7\",\"sampleBatch\":\"7\",\"sampleManufacturer\":\"7\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104051962.png\"},{\"key\":8,\"sampleType\":\"8\",\"sampleModel\":\"8\",\"sampleBatch\":\"8\",\"sampleManufacturer\":\"8\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104060787.png\"},{\"key\":9,\"sampleType\":\"9\",\"sampleModel\":\"9\",\"sampleBatch\":\"9\",\"sampleManufacturer\":\"9\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104067880.png\"},{\"key\":10,\"sampleType\":\"10\",\"sampleModel\":\"10\",\"sampleBatch\":\"10\",\"sampleManufacturer\":\"10\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104079112.png\"},{\"key\":11,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":12,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":13,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":14,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":15,\"sampleType\":\"11\",\"sampleModel\":\"11\",\"sampleBatch\":\"11\",\"sampleManufacturer\":\"11\"}]', '/oss/physical/temp/微信图片_20241202095648_1733107950874.png,上传失败,存在非法文件类型:webp,/oss/physical/temp/641(1)_1733107963241.jpg', '测试偏执原理说明', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试实验名称-试验报告'), -('1863500398021140482', 'zhangru', '2024-12-02 16:28:12', NULL, NULL, 'A01', '1862700915955953665', '[{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733103934541.png\"}]', '/oss/physical/temp/57e572cd41520408ebbbe5e3a6fb5b6d_1733128047815.jpeg,/oss/physical/temp/641(1)_1733128047779.jpg,/oss/physical/temp/641_1733128047901.jpg,/oss/physical/temp/57e572cd41520408ebbbe5e3a6fb5b6d_1733128071249.jpeg,/oss/physical/temp/641(1)_1733128071269.jpg,/oss/physical/temp/641_1733128071246.jpg,/oss/physical/temp/sketch_1732622793653_1733128071250.png,上传失败,存在非法文件类型:webp,/oss/physical/temp/微信图片_20241031164503_1733128071381.png', '111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试实验名称-试验报告'), -('1863576511435075586', 'caoxiang', '2024-12-02 21:30:39', NULL, NULL, 'A01', '1862644923750772738', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试生产厂家\",\"sampleImage\":\"\"}]', '/oss/physical/temp/1728699098531_1733146220653.jpg', '11', '1842788885145956354', '1842788885145956354', '1842788885145956354', 'INIT', '测试试验名称-试验报告'), -('1863777991056257025', 'zhangru', '2024-12-03 10:51:15', NULL, NULL, 'A01', '1862700915955953665', '[{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733103934541.png\"}]', '/oss/physical/temp/sketch_1732622793653_1733194266662.png', '11111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试实验名称-试验报告'), -('1863778086136934401', 'zhangru', '2024-12-03 10:51:38', NULL, NULL, 'A01', '1862700915955953665', '[{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733103934541.png\"}]', '/oss/physical/temp/sketch_1732622793653_1733194290636.png', '111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试实验名称-试验报告'), -('1863778887970418690', 'zhangru', '2024-12-03 10:54:49', NULL, NULL, 'A01', '1862644923750772738', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试生产厂家\",\"sampleImage\":\"\"}]', '/oss/physical/temp/sketch_1732622793653_1733194480560.png', '111111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试试验名称-试验报告'), -('1863781525172613122', 'zhangru', '2024-12-03 11:05:18', 'zhangru', '2024-12-03 15:21:55', 'A01', '1863780910170206210', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', '/oss/physical/temp/sketch_1732622793653_1733195104351.png', '111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称-试验报告'), -('1863825179765469185', 'zhangru', '2024-12-03 13:58:46', 'zhangru', '2024-12-03 15:21:53', 'A01', '1863780910170206210', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', '/oss/physical/temp/sketch_1732622793653_1733205514541.png', '11111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称-试验报告'), -('1863825252138184706', 'zhangru', '2024-12-03 13:59:03', 'zhangru', '2024-12-03 15:21:50', 'A01', '1863780910170206210', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', '/oss/physical/temp/sketch_1732622793653_1733205535798.png', '111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称-试验报告'), -('1863827353484488705', 'admin', '2024-12-03 14:07:24', NULL, NULL, 'A01', '1863780910170206210', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', '/oss/physical/temp/4_1733206031799.jpg', '111', '1842788885145956354', '1842788885145956354', '1842788885145956354', 'INIT', '测试试验名称-试验报告'), -('1863860085094707201', 'zhangru', '2024-12-03 16:17:28', 'zhangru', '2024-12-03 18:50:19', 'A01', '1863851214359851010', '[]', '/oss/physical/temp/015d1f5ae9e25aa801207fa1aa019b_1733213837333.jpg,/oss/physical/temp/57e572cd41520408ebbbe5e3a6fb5b6d_1733213837187.jpeg,/oss/physical/temp/641(1)_1733213837145.jpg,/oss/physical/temp/641_1733213837188.jpg,/oss/physical/temp/sketch_1732622793653_1733213837197.png,上传失败,存在非法文件类型:webp,/oss/physical/temp/微信图片_20241031164503_1733213837291.png,/oss/physical/temp/微信图片_20241202095619_1733213837197.png,/oss/physical/temp/微信图片_20241202095644_1733213837306.png,/oss/physical/temp/微信图片_20241202095648_1733213837278.png', '111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试-试验报告'), -('1863860349272944642', 'zhangru', '2024-12-03 16:18:31', 'zhangru', '2024-12-03 18:50:22', 'A01', '1863851214359851010', '[]', '上传失败,存在非法文件类型:webp', '11111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试-试验报告'), -('1863868900989038594', 'caoxiang', '2024-12-03 16:52:30', NULL, NULL, 'A01', '1863851214359851010', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"}]', '/oss/physical/temp/1728699098531_1733215942360.jpg', '111', '1842788885145956354', '1842788885145956354', '1842788885145956354', 'INIT', '测试-试验报告'), -('1863869972340109313', 'zhangru', '2024-12-03 16:56:45', NULL, NULL, 'A01', '1863782878380912641', '[]', '/oss/physical/temp/641(1)_1733216199738.jpg', '1', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试试验名称-2-试验报告'), -('1863898182859714562', 'zhangru', '2024-12-03 18:48:51', 'zhangru', '2024-12-03 18:49:13', 'A01', '1863851214359851010', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/4932.jpg_wh300_1733222894077.jpg\"},{\"key\":1,\"sampleType\":\"测试\",\"sampleModel\":\"测试\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/v2-5fb13110e1de13d4c11e6e7f5b8026da_r_1733222899392.jpg\"}]', '/oss/physical/temp/4932.jpg_wh300_1733222927113.jpg,/oss/physical/temp/v2-5fb13110e1de13d4c11e6e7f5b8026da_r_1733222927282.jpg,/oss/physical/temp/v2-5fb13110e1de13d4c11e6e7f5b8026da_r_1733222948411.jpg', '1', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试-试验报告'), -('1863907053917532161', 'zhangru', '2024-12-03 19:24:06', 'zhangru', '2024-12-03 19:24:20', 'A01', '1863898586251096065', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/4932.jpg_wh300_1733222894077.jpg\"},{\"key\":1,\"sampleType\":\"测试\",\"sampleModel\":\"测试\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/v2-5fb13110e1de13d4c11e6e7f5b8026da_r_1733222899392.jpg\"}]', '/oss/physical/temp/4932.jpg_wh300_1733225042407.jpg', '1111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试-1-试验报告'), -('1864109083206447105', 'zhangru', '2024-12-04 08:46:54', 'zhangru', '2024-12-04 08:52:04', 'A01', '1864108428710473730', '[{\"key\":0,\"sampleType\":\"样品类型\",\"sampleModel\":\"样品型号\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/641_1733273034949.jpg\"}]', '/oss/physical/temp/641(1)_1733273204696.jpg,/oss/physical/temp/641_1733273204729.jpg', '1111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称11-试验报告'), -('1864111263841873921', 'zhangru', '2024-12-04 08:55:33', NULL, NULL, 'A01', '1864108428710473730', '[{\"key\":0,\"sampleType\":\"样品类型\",\"sampleModel\":\"样品型号\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/641_1733273034949.jpg\"}]', '/oss/physical/temp/1728699098531_1733273727878.jpg', '1111', '1842788885145956354', '1842788885145956354', '1842788885145956354', 'INIT', '测试试验名称11-试验报告'), -('1864216188735287297', 'zhangru', '2024-12-04 15:52:30', NULL, NULL, 'A01', '1864210739042545665', '[{\"key\":0,\"sampleType\":\"类型1\",\"sampleModel\":\"型号1\",\"sampleBatch\":\"批次1\",\"sampleManufacturer\":\"厂家1\"}]', '/oss/physical/temp/bg_1733298726982.png', '222', '1860866034718285825', '1842788885145956354', '1842788885145956354', 'INIT', '理化所试验-试验报告'), -('1864250944764080130', 'zhangru', '2024-12-04 18:10:36', 'caoxiang', '2024-12-04 18:15:02', 'A01', '1864227118588194817', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"2\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"4\",\"sampleImage\":\"\"}]', '/oss/physical/temp/bg_1733307016305.png', '333333', '1842788885145956354', '1842788885145956354', '1842788885145956354', 'PASSED', '理化所试验1-试验报告'); +INSERT INTO `experiment_report` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `experiment_id`, `sample_info`, `img_urls`, `description`, `auditor`, `proofreader`, `confirmer`, `status`, `report_name`, `memo`) VALUES +('1849726313710592001', 'admin', '2024-10-25 16:14:54', NULL, NULL, 'A01', '1849101192671113217', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"},{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"},{\"key\":2,\"sampleType\":\"3\",\"sampleModel\":\"3\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"3\"}]', '/oss/physical/temp/1728699098531_1729844083375.png', 'qqq', 'admin', 'admin', 'admin', 'INIT', NULL, NULL), +('1850132258483707905', 'admin', '2024-10-26 19:07:59', 'confirmer', '2024-10-26 19:59:15', 'A01', '1849101192671113217', '[{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"},{\"key\":2,\"sampleType\":\"3\",\"sampleModel\":\"3\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"3\"}]', '/oss/physical/temp/1728699098531_1729940863790.png,/oss/physical/temp/1728699098531_1729940868197.png', '111', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'PASSED', NULL, NULL), +('1850146368625680385', 'admin', '2024-10-26 20:04:03', '校对员', '2024-10-26 21:32:32', 'A01', '1849101192671113217', '[{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"},{\"key\":2,\"sampleType\":\"3\",\"sampleModel\":\"3\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"3\"}]', '/oss/physical/temp/1728699098531_1729944234667.png', '123', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'PROOFREAD_PASS', NULL, NULL), +('1850154164968595458', 'admin', '2024-10-26 20:35:02', 'admin', '2024-10-26 22:27:11', 'A01', '1849101192671113217', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"http://58.215.212.230:8005/oss/physical/temp/1728699098531_1729951598957.png\"}]', '/oss/physical/temp/1728699098531_1729952817269.png', '1', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', NULL, NULL), +('1850163150732238849', 'admin', '2024-10-26 21:10:44', '校对员', '2024-10-26 21:28:54', 'A01', '1849101192671113217', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"},{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"}]', '/oss/physical/temp/1728699098531_1729948236577.png', '11', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'REJECT', NULL, NULL), +('1850168741785608193', '校对员', '2024-10-26 21:32:57', '校对员', '2024-10-26 21:38:48', NULL, '1849101192671113217', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"}]', '/oss/physical/temp/1728699098531_1729949908711.png', '454', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'REJECT', NULL, NULL), +('1850168880935837697', '校对员', '2024-10-26 21:33:30', NULL, NULL, NULL, '1849101192671113217', '[]', '', '000', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', NULL, NULL), +('1850467033677406210', 'caoxiang', '2024-10-27 17:18:16', NULL, NULL, NULL, '1845361500624625666', '[{\"key\":1,\"sampleType\":\"1233\",\"sampleModel\":\"456\",\"sampleBatch\":\"123\",\"sampleManufacturer\":\"123000\",\"sampleImage\":\"http://58.215.212.230:8005/oss/physical/temp/WX20241012-0030312x_1729951578661.png\"}]', '/oss/physical/temp/1728699098531_1730020688543.png', '1', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', NULL, NULL), +('1857623120755646465', 'admin', '2024-11-16 11:14:00', NULL, NULL, 'A01', '1856996393805242370', '[]', '', '11', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', NULL, NULL), +('1857749056675209218', 'caoxiang', '2024-11-16 19:34:25', NULL, NULL, NULL, '1856996393805242370', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"},{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"}]', '', '11', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', NULL, NULL), +('1857749175327875073', 'caoxiang', '2024-11-16 19:34:53', NULL, NULL, NULL, '1856996393805242370', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"}]', '/oss/physical/temp/1728699098531_1731756881959.png', '1', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', NULL, NULL), +('1859166030261215233', 'caoxiang', '2024-11-20 17:24:58', NULL, NULL, 'A01', '1858789172747259906', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"},{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"},{\"key\":2,\"sampleType\":\"2\",\"sampleModel\":\"3\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"3\"},{\"key\":3,\"sampleType\":\"3\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"}]', '', '测试', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', '121231-试验报告', NULL), +('1859172591176081410', 'caoxiang', '2024-11-20 17:51:02', 'caoxiang', '2024-11-20 17:51:11', 'A01', '1858789172747259906', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"}]', '', '测试一下', '1842788885145956354', '1842788885145956354', '1842788885145956354', 'PASSED', '121231-试验报告', NULL), +('1860882967547158529', 'zhangru', '2024-11-25 11:07:28', NULL, NULL, NULL, '1860876355205931009', '[]', '', '111111111', '1850123707476451329', '1850124042844610562', '1850047065370501121', 'INIT', '测试名称-2-试验报告', NULL), +('1860918317782999042', 'admin', '2024-11-25 13:27:56', NULL, NULL, 'A01', '1856969709571891202', '[]', '', '111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '66-1-试验报告', NULL), +('1860919007947333634', 'zhangru', '2024-11-25 13:30:40', 'zhangru', '2024-11-25 13:30:50', NULL, '1860873025121492993', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"10\",\"sampleManufacturer\":\"测试生产厂家\",\"sampleImage\":\"\"}]', '', '11111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试名称-试验报告', NULL), +('1860919782756917250', 'zhangru', '2024-11-25 13:33:45', NULL, NULL, NULL, '1859413068135620610', '[]', '', '1111111', '1842788885145956354', '1842788885145956354', '1850047065370501121', 'INIT', '测试0001-试验报告', NULL), +('1860923697162428417', 'zhangru', '2024-11-25 13:49:18', 'zhangru', '2024-11-25 13:49:24', NULL, '1860921279146172418', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"http://58.215.212.230:8005/oss/physical/temp/微信图片_20241031164503_1732513485229.png\"},{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"http://58.215.212.230:8005/oss/physical/temp/微信图片_20241031164503_1732513681179.png\"}]', 'http://58.215.212.230:8005/oss/physical/temp/微信图片_20241031164503_1732513748442.png', '11111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试名称1-试验报告', NULL), +('1860924552154521601', 'zhangru', '2024-11-25 13:52:42', 'zhangru', '2024-11-25 13:52:51', NULL, '1860924431467618306', '[]', '', '111111111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称1-试验报告', NULL), +('1860924730613768194', 'zhangru', '2024-11-25 13:53:25', 'zhangru', '2024-11-25 13:53:29', NULL, '1860875593432244226', '[]', '', '1111111', '1850123707476451329', '1860866034718285825', '1850047065370501121', 'PROOFREAD_PASS', '测试名称-1-试验报告', NULL), +('1860926631350706178', 'zhangru', '2024-11-25 14:00:58', 'zhangru', '2024-11-25 14:50:27', NULL, '1860925388435824642', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"10\",\"sampleManufacturer\":\"测试生产厂家\",\"sampleImage\":\"\"},{\"key\":1,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\"}]', 'http://58.215.212.230:8005/oss/physical/temp/微信图片_20241031164503_1732514474687.png', '1111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试名称-1-2-试验报告', NULL), +('1861579542510514178', 'zhangru', '2024-11-27 09:15:24', NULL, NULL, NULL, '1860932561089929217', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/avator_1732617834655.jpg\"}]', '/oss/physical/temp/sketch_1732622793653_1732670111584.png,/oss/physical/temp/微信图片_20241031164503_1732670116175.png', '1111111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试名称1-1-试验报告', NULL), +('1861579654129332225', 'zhangru', '2024-11-27 09:15:51', NULL, NULL, NULL, '1860932561089929217', '[{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"http://58.215.212.230:8005/oss/physical/temp/微信图片_20241031164503_1732513681179.png\"}]', '/oss/physical/temp/sketch_1732622793653_1732670138919.png,/oss/physical/temp/微信图片_20241031164503_1732670139028.png', '等等的点点滴滴', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试名称1-1-试验报告', NULL), +('1861581901303197697', 'zhangru', '2024-11-27 09:24:46', 'zhangru', '2024-11-27 20:01:44', NULL, '1861580310676320257', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1732670237894.png\"}]', '/oss/physical/temp/sketch_1732622793653_1732670646657.png', '5555555', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称-试验报告', NULL), +('1861581966692397057', 'zhangru', '2024-11-27 09:25:02', 'zhangru', '2024-11-28 08:47:46', NULL, '1861580310676320257', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1732670237894.png\"}]', '/oss/physical/temp/微信图片_20241031164503_1732670696024.png', '222222222', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称-试验报告', NULL), +('1861935098853134338', 'zhangru', '2024-11-28 08:48:15', 'zhangru', '2024-11-28 09:02:06', NULL, '1861580310676320257', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1732670237894.png\"}]', '/oss/physical/temp/sketch_1732622793653_1732754888901.png,/oss/physical/temp/微信图片_20241031164503_1732754888917.png', '11111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称-试验报告', NULL), +('1862653684053798914', 'zhangru', '2024-11-30 08:23:39', 'zhangru', '2024-11-30 08:24:03', 'A01', '1862644923750772738', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1732924652656.png\"}]', '', '11111111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'REJECT', '测试试验名称-试验报告', NULL), +('1863385036583694337', 'zhangru', '2024-12-02 08:49:47', 'zhangru', '2024-12-02 08:52:47', 'A01', '1863381782466490369', '[]', '', '1111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试实验名称1111111111111111111111111111111111111111111111111111111111111111111-试验报告', NULL), +('1863385458203521026', 'zhangru', '2024-12-02 08:51:28', 'zhangru', '2024-12-02 09:25:54', 'A01', '1863381782466490369', '[]', '', '1111111111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试实验名称1111111111111111111111111111111111111111111111111111111111111111111-试验报告', NULL), +('1863390755139710978', 'zhangru', '2024-12-02 09:12:31', NULL, NULL, 'A01', '1863386296481312769', '[]', '', '1111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试实验名称复制1-试验报告', NULL), +('1863400228415696898', 'zhangru', '2024-12-02 09:50:09', 'zhangru', '2024-12-02 10:06:15', 'A01', '1862700915955953665', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733103017593.png\"},{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733103934541.png\"},{\"key\":2,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733103969689.png\"},{\"key\":3,\"sampleType\":\"3\",\"sampleModel\":\"3\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"3\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104017200.png\"},{\"key\":4,\"sampleType\":\"4\",\"sampleModel\":\"4\",\"sampleBatch\":\"4\",\"sampleManufacturer\":\"4\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104025558.png\"},{\"key\":5,\"sampleType\":\"5\",\"sampleModel\":\"5\",\"sampleBatch\":\"5\",\"sampleManufacturer\":\"5\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104034454.png\"},{\"key\":6,\"sampleType\":\"6\",\"sampleModel\":\"6\",\"sampleBatch\":\"6\",\"sampleManufacturer\":\"6\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104043662.png\"},{\"key\":7,\"sampleType\":\"7\",\"sampleModel\":\"7\",\"sampleBatch\":\"7\",\"sampleManufacturer\":\"7\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104051962.png\"},{\"key\":8,\"sampleType\":\"8\",\"sampleModel\":\"8\",\"sampleBatch\":\"8\",\"sampleManufacturer\":\"8\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104060787.png\"},{\"key\":9,\"sampleType\":\"9\",\"sampleModel\":\"9\",\"sampleBatch\":\"9\",\"sampleManufacturer\":\"9\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104067880.png\"},{\"key\":10,\"sampleType\":\"10\",\"sampleModel\":\"10\",\"sampleBatch\":\"10\",\"sampleManufacturer\":\"10\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104079112.png\"},{\"key\":11,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":12,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":13,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":14,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"}]', '', '11111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'REJECT', '测试实验名称-试验报告', NULL), +('1863416201474568194', 'zhangru', '2024-12-02 10:53:38', NULL, NULL, 'A01', '1862700915955953665', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733103017593.png\"},{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733103934541.png\"},{\"key\":2,\"sampleType\":\"2\",\"sampleModel\":\"2\",\"sampleBatch\":\"2\",\"sampleManufacturer\":\"2\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733103969689.png\"},{\"key\":3,\"sampleType\":\"3\",\"sampleModel\":\"3\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"3\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104017200.png\"},{\"key\":4,\"sampleType\":\"4\",\"sampleModel\":\"4\",\"sampleBatch\":\"4\",\"sampleManufacturer\":\"4\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104025558.png\"},{\"key\":5,\"sampleType\":\"5\",\"sampleModel\":\"5\",\"sampleBatch\":\"5\",\"sampleManufacturer\":\"5\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104034454.png\"},{\"key\":6,\"sampleType\":\"6\",\"sampleModel\":\"6\",\"sampleBatch\":\"6\",\"sampleManufacturer\":\"6\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104043662.png\"},{\"key\":7,\"sampleType\":\"7\",\"sampleModel\":\"7\",\"sampleBatch\":\"7\",\"sampleManufacturer\":\"7\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104051962.png\"},{\"key\":8,\"sampleType\":\"8\",\"sampleModel\":\"8\",\"sampleBatch\":\"8\",\"sampleManufacturer\":\"8\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104060787.png\"},{\"key\":9,\"sampleType\":\"9\",\"sampleModel\":\"9\",\"sampleBatch\":\"9\",\"sampleManufacturer\":\"9\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733104067880.png\"},{\"key\":10,\"sampleType\":\"10\",\"sampleModel\":\"10\",\"sampleBatch\":\"10\",\"sampleManufacturer\":\"10\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733104079112.png\"},{\"key\":11,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":12,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":13,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":14,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品类型\",\"sampleBatch\":\"测试样品类型\",\"sampleManufacturer\":\"测试样品类型\"},{\"key\":15,\"sampleType\":\"11\",\"sampleModel\":\"11\",\"sampleBatch\":\"11\",\"sampleManufacturer\":\"11\"}]', '/oss/physical/temp/微信图片_20241202095648_1733107950874.png,上传失败,存在非法文件类型:webp,/oss/physical/temp/641(1)_1733107963241.jpg', '测试偏执原理说明', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试实验名称-试验报告', NULL), +('1863500398021140482', 'zhangru', '2024-12-02 16:28:12', NULL, NULL, 'A01', '1862700915955953665', '[{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733103934541.png\"}]', '/oss/physical/temp/57e572cd41520408ebbbe5e3a6fb5b6d_1733128047815.jpeg,/oss/physical/temp/641(1)_1733128047779.jpg,/oss/physical/temp/641_1733128047901.jpg,/oss/physical/temp/57e572cd41520408ebbbe5e3a6fb5b6d_1733128071249.jpeg,/oss/physical/temp/641(1)_1733128071269.jpg,/oss/physical/temp/641_1733128071246.jpg,/oss/physical/temp/sketch_1732622793653_1733128071250.png,上传失败,存在非法文件类型:webp,/oss/physical/temp/微信图片_20241031164503_1733128071381.png', '111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试实验名称-试验报告', NULL), +('1863576511435075586', 'caoxiang', '2024-12-02 21:30:39', NULL, NULL, 'A01', '1862644923750772738', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试生产厂家\",\"sampleImage\":\"\"}]', '/oss/physical/temp/1728699098531_1733146220653.jpg', '11', '1842788885145956354', '1842788885145956354', '1842788885145956354', 'INIT', '测试试验名称-试验报告', NULL), +('1863777991056257025', 'zhangru', '2024-12-03 10:51:15', NULL, NULL, 'A01', '1862700915955953665', '[{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733103934541.png\"}]', '/oss/physical/temp/sketch_1732622793653_1733194266662.png', '11111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试实验名称-试验报告', NULL), +('1863778086136934401', 'zhangru', '2024-12-03 10:51:38', NULL, NULL, 'A01', '1862700915955953665', '[{\"key\":1,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/微信图片_20241031164503_1733103934541.png\"}]', '/oss/physical/temp/sketch_1732622793653_1733194290636.png', '111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试实验名称-试验报告', NULL), +('1863778887970418690', 'zhangru', '2024-12-03 10:54:49', NULL, NULL, 'A01', '1862644923750772738', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试生产厂家\",\"sampleImage\":\"\"}]', '/oss/physical/temp/sketch_1732622793653_1733194480560.png', '111111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试试验名称-试验报告', NULL), +('1863781525172613122', 'zhangru', '2024-12-03 11:05:18', 'zhangru', '2024-12-03 15:21:55', 'A01', '1863780910170206210', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', '/oss/physical/temp/sketch_1732622793653_1733195104351.png', '111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称-试验报告', NULL), +('1863825179765469185', 'zhangru', '2024-12-03 13:58:46', 'zhangru', '2024-12-03 15:21:53', 'A01', '1863780910170206210', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', '/oss/physical/temp/sketch_1732622793653_1733205514541.png', '11111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称-试验报告', NULL), +('1863825252138184706', 'zhangru', '2024-12-03 13:59:03', 'zhangru', '2024-12-03 15:21:50', 'A01', '1863780910170206210', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', '/oss/physical/temp/sketch_1732622793653_1733205535798.png', '111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称-试验报告', NULL), +('1863827353484488705', 'admin', '2024-12-03 14:07:24', NULL, NULL, 'A01', '1863780910170206210', '[{\"key\":0,\"sampleType\":\"测试样品类型\",\"sampleModel\":\"测试样品型号\",\"sampleBatch\":\"测试样品批次\",\"sampleManufacturer\":\"测试样品生产厂家\",\"sampleImage\":\"/oss/physical/temp/sketch_1732622793653_1733194911578.png\"}]', '/oss/physical/temp/4_1733206031799.jpg', '111', '1842788885145956354', '1842788885145956354', '1842788885145956354', 'INIT', '测试试验名称-试验报告', NULL), +('1863860085094707201', 'zhangru', '2024-12-03 16:17:28', 'zhangru', '2024-12-03 18:50:19', 'A01', '1863851214359851010', '[]', '/oss/physical/temp/015d1f5ae9e25aa801207fa1aa019b_1733213837333.jpg,/oss/physical/temp/57e572cd41520408ebbbe5e3a6fb5b6d_1733213837187.jpeg,/oss/physical/temp/641(1)_1733213837145.jpg,/oss/physical/temp/641_1733213837188.jpg,/oss/physical/temp/sketch_1732622793653_1733213837197.png,上传失败,存在非法文件类型:webp,/oss/physical/temp/微信图片_20241031164503_1733213837291.png,/oss/physical/temp/微信图片_20241202095619_1733213837197.png,/oss/physical/temp/微信图片_20241202095644_1733213837306.png,/oss/physical/temp/微信图片_20241202095648_1733213837278.png', '111111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试-试验报告', NULL), +('1863860349272944642', 'zhangru', '2024-12-03 16:18:31', 'zhangru', '2024-12-03 18:50:22', 'A01', '1863851214359851010', '[]', '上传失败,存在非法文件类型:webp', '11111111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试-试验报告', NULL), +('1863868900989038594', 'caoxiang', '2024-12-03 16:52:30', NULL, NULL, 'A01', '1863851214359851010', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\"}]', '/oss/physical/temp/1728699098531_1733215942360.jpg', '111', '1842788885145956354', '1842788885145956354', '1842788885145956354', 'INIT', '测试-试验报告', NULL), +('1863869972340109313', 'zhangru', '2024-12-03 16:56:45', NULL, NULL, 'A01', '1863782878380912641', '[]', '/oss/physical/temp/641(1)_1733216199738.jpg', '1', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试试验名称-2-试验报告', NULL), +('1863898182859714562', 'zhangru', '2024-12-03 18:48:51', 'zhangru', '2024-12-03 18:49:13', 'A01', '1863851214359851010', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/4932.jpg_wh300_1733222894077.jpg\"},{\"key\":1,\"sampleType\":\"测试\",\"sampleModel\":\"测试\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/v2-5fb13110e1de13d4c11e6e7f5b8026da_r_1733222899392.jpg\"}]', '/oss/physical/temp/4932.jpg_wh300_1733222927113.jpg,/oss/physical/temp/v2-5fb13110e1de13d4c11e6e7f5b8026da_r_1733222927282.jpg,/oss/physical/temp/v2-5fb13110e1de13d4c11e6e7f5b8026da_r_1733222948411.jpg', '1', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试-试验报告', NULL), +('1863907053917532161', 'zhangru', '2024-12-03 19:24:06', 'zhangru', '2024-12-03 19:24:20', 'A01', '1863898586251096065', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"1\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/4932.jpg_wh300_1733222894077.jpg\"},{\"key\":1,\"sampleType\":\"测试\",\"sampleModel\":\"测试\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/v2-5fb13110e1de13d4c11e6e7f5b8026da_r_1733222899392.jpg\"}]', '/oss/physical/temp/4932.jpg_wh300_1733225042407.jpg', '1111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'INIT', '测试-1-试验报告', NULL), +('1864109083206447105', 'zhangru', '2024-12-04 08:46:54', 'zhangru', '2024-12-04 08:52:04', 'A01', '1864108428710473730', '[{\"key\":0,\"sampleType\":\"样品类型\",\"sampleModel\":\"样品型号\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/641_1733273034949.jpg\"}]', '/oss/physical/temp/641(1)_1733273204696.jpg,/oss/physical/temp/641_1733273204729.jpg', '1111', '1860866034718285825', '1860866034718285825', '1860866034718285825', 'PASSED', '测试试验名称11-试验报告', NULL), +('1864111263841873921', 'zhangru', '2024-12-04 08:55:33', NULL, NULL, 'A01', '1864108428710473730', '[{\"key\":0,\"sampleType\":\"样品类型\",\"sampleModel\":\"样品型号\",\"sampleBatch\":\"1\",\"sampleManufacturer\":\"1\",\"sampleImage\":\"/oss/physical/temp/641_1733273034949.jpg\"}]', '/oss/physical/temp/1728699098531_1733273727878.jpg', '1111', '1842788885145956354', '1842788885145956354', '1842788885145956354', 'INIT', '测试试验名称11-试验报告', NULL), +('1864216188735287297', 'zhangru', '2024-12-04 15:52:30', NULL, NULL, 'A01', '1864210739042545665', '[{\"key\":0,\"sampleType\":\"类型1\",\"sampleModel\":\"型号1\",\"sampleBatch\":\"批次1\",\"sampleManufacturer\":\"厂家1\"}]', '/oss/physical/temp/bg_1733298726982.png', '222', '1860866034718285825', '1842788885145956354', '1842788885145956354', 'INIT', '理化所试验-试验报告', NULL), +('1864250944764080130', 'zhangru', '2024-12-04 18:10:36', 'caoxiang', '2024-12-04 18:15:02', 'A01', '1864227118588194817', '[{\"key\":0,\"sampleType\":\"1\",\"sampleModel\":\"2\",\"sampleBatch\":\"3\",\"sampleManufacturer\":\"4\",\"sampleImage\":\"\"}]', '/oss/physical/temp/bg_1733307016305.png', '333333', '1842788885145956354', '1842788885145956354', '1842788885145956354', 'PASSED', '理化所试验1-试验报告', NULL); INSERT INTO `experiment_review` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `experiment_id`, `review_process`, `review_detail`, `review_result`) VALUES ('1854417754101751809', 'caoxiang', '2024-11-07 14:57:01', 'caoxiang', '2024-11-13 15:04:03', NULL, '1851539266860589058', 'ESCC 22500', '{\"nodes\":[{\"id\":\"vue-node-1\",\"type\":\"custom-vue-node\",\"x\":363,\"y\":255,\"properties\":{\"width\":300,\"height\":100,\"title\":\"样品应用环境剂里奉条件下是否通过测试\",\"showRadio\":true,\"showBtn\":false}},{\"id\":\"vue-node-2\",\"type\":\"custom-vue-node\",\"x\":714,\"y\":93,\"properties\":{\"width\":300,\"height\":100,\"title\":\"确定是否需要 ELDRS 测试\",\"showRadio\":true,\"showBtn\":true,\"value\":\"1\"}},{\"id\":\"025d0bd9-9be4-4e75-b601-bae50b22946f\",\"type\":\"custom-vue-node\",\"x\":363,\"y\":392,\"properties\":{\"width\":300,\"height\":100,\"title\":\"1\",\"showRadio\":true}},{\"id\":\"b066cffe-9cf3-4681-ad83-cef993075364\",\"type\":\"custom-vue-node\",\"x\":363,\"y\":530,\"properties\":{\"width\":300,\"height\":100,\"title\":\"2\",\"showRadio\":true}},{\"id\":\"6e59b21a-fc64-4705-a489-8af2885dbf2a\",\"type\":\"custom-vue-node\",\"x\":1074,\"y\":237,\"properties\":{\"width\":300,\"height\":100,\"title\":\"3\",\"showRadio\":true}},{\"id\":\"7a7c1b70-2cd3-463d-a2dd-b6a7c42c3725\",\"type\":\"custom-vue-node\",\"x\":1074,\"y\":367,\"properties\":{\"width\":300,\"height\":100,\"title\":\"4\",\"showRadio\":true}},{\"id\":\"7a3ed329-052e-4840-a64f-71dd394c5f32\",\"type\":\"custom-vue-node\",\"x\":1074,\"y\":497,\"properties\":{\"width\":300,\"height\":100,\"title\":\"5\",\"showRadio\":true}},{\"id\":\"69a8ff50-d109-4f1f-94a3-28691bda018f\",\"type\":\"custom-vue-node\",\"x\":732,\"y\":497,\"properties\":{\"width\":300,\"height\":100,\"title\":\"是否需要加速送火试验\",\"showRadio\":true,\"showBtn\":true,\"value\":\"1\"}},{\"id\":\"b11a344b-4f17-4ece-9ca0-bea597cff7e6\",\"type\":\"custom-vue-node\",\"x\":732,\"y\":757,\"properties\":{\"width\":300,\"height\":100,\"title\":\"7\",\"showRadio\":true}},{\"id\":\"465fe39a-1f8d-4d51-91a1-d67e71cd7eda\",\"type\":\"custom-vue-node\",\"x\":732,\"y\":900,\"properties\":{\"width\":300,\"height\":100,\"title\":\"8\",\"showRadio\":true}},{\"id\":\"3838834c-881e-4e8b-80eb-936e8e2f5429\",\"type\":\"custom-vue-node\",\"x\":1430,\"y\":497,\"properties\":{\"width\":300,\"height\":100,\"title\":\"9\",\"showRadio\":true}},{\"id\":\"052a36b5-bc6e-4bf2-9a80-88d50ec6fa93\",\"type\":\"custom-vue-node\",\"x\":1430,\"y\":624,\"properties\":{\"width\":300,\"height\":100,\"title\":\"10\",\"showRadio\":true}},{\"id\":\"736705a1-ff13-449c-be95-eca3aef667fe\",\"type\":\"custom-vue-node\",\"x\":1429,\"y\":757,\"properties\":{\"width\":300,\"height\":100,\"title\":\"11\",\"showRadio\":true}},{\"id\":\"8f523bac-f8ae-485a-94cb-6cece9c39b01\",\"type\":\"custom-vue-node\",\"x\":1086,\"y\":900,\"properties\":{\"width\":300,\"height\":100,\"title\":\"12\",\"showRadio\":true}},{\"id\":\"08c05047-3948-4e9d-b650-8e052ebc698c\",\"type\":\"custom-vue-node\",\"x\":1086,\"y\":1043,\"properties\":{\"width\":300,\"height\":100,\"title\":\"13\",\"showRadio\":true,\"value\":\"1\"}},{\"id\":\"99292bae-92f8-4b07-8571-251b1cb35396\",\"type\":\"custom-vue-node\",\"x\":1086,\"y\":1182,\"properties\":{\"width\":300,\"height\":100,\"title\":\"14\",\"showRadio\":true}}],\"edges\":[{\"id\":\"55aa2820-8327-4a21-afe2-68a2672c2b1d\",\"type\":\"bezier\",\"properties\":{},\"sourceNodeId\":\"vue-node-2\",\"targetNodeId\":\"vue-node-1\",\"startPoint\":{\"x\":564,\"y\":93},\"endPoint\":{\"x\":513,\"y\":255},\"pointsList\":[{\"x\":564,\"y\":93},{\"x\":543,\"y\":93},{\"x\":543,\"y\":255},{\"x\":513,\"y\":255}]},{\"id\":\"13def69c-bae7-4a21-8d2e-5b09ea8ea7ec\",\"type\":\"bezier\",\"properties\":{},\"sourceNodeId\":\"vue-node-2\",\"targetNodeId\":\"025d0bd9-9be4-4e75-b601-bae50b22946f\",\"startPoint\":{\"x\":564,\"y\":93},\"endPoint\":{\"x\":513,\"y\":392},\"pointsList\":[{\"x\":564,\"y\":93},{\"x\":543,\"y\":93},{\"x\":543,\"y\":392},{\"x\":513,\"y\":392}]},{\"id\":\"79aa1892-275f-4647-ae49-a07abd250e2a\",\"type\":\"bezier\",\"properties\":{},\"sourceNodeId\":\"vue-node-2\",\"targetNodeId\":\"b066cffe-9cf3-4681-ad83-cef993075364\",\"startPoint\":{\"x\":564,\"y\":93},\"endPoint\":{\"x\":513,\"y\":530},\"pointsList\":[{\"x\":564,\"y\":93},{\"x\":543,\"y\":93},{\"x\":543,\"y\":530},{\"x\":513,\"y\":530}]},{\"id\":\"66cd8302-13ef-4b9b-9976-51f470753e3f\",\"type\":\"bezier\",\"properties\":{},\"sourceNodeId\":\"vue-node-2\",\"targetNodeId\":\"6e59b21a-fc64-4705-a489-8af2885dbf2a\",\"startPoint\":{\"x\":864,\"y\":93},\"endPoint\":{\"x\":924,\"y\":237},\"pointsList\":[{\"x\":864,\"y\":93},{\"x\":894,\"y\":93},{\"x\":894,\"y\":237},{\"x\":924,\"y\":237}]},{\"id\":\"c04c55b4-1656-42b4-b611-95912c229f56\",\"type\":\"polyline\",\"properties\":{},\"sourceNodeId\":\"6e59b21a-fc64-4705-a489-8af2885dbf2a\",\"targetNodeId\":\"7a7c1b70-2cd3-463d-a2dd-b6a7c42c3725\",\"startPoint\":{\"x\":1074,\"y\":287},\"endPoint\":{\"x\":1074,\"y\":317},\"pointsList\":[{\"x\":1074,\"y\":287},{\"x\":1074,\"y\":317},{\"x\":1074,\"y\":317},{\"x\":1074,\"y\":287},{\"x\":1074,\"y\":287},{\"x\":1074,\"y\":317}]},{\"id\":\"0737b117-6ec0-48f9-91bc-78317fc7addf\",\"type\":\"polyline\",\"properties\":{},\"sourceNodeId\":\"7a7c1b70-2cd3-463d-a2dd-b6a7c42c3725\",\"targetNodeId\":\"7a3ed329-052e-4840-a64f-71dd394c5f32\",\"startPoint\":{\"x\":1074,\"y\":417},\"endPoint\":{\"x\":1074,\"y\":447},\"pointsList\":[{\"x\":1074,\"y\":417},{\"x\":1074,\"y\":447},{\"x\":1074,\"y\":447},{\"x\":1074,\"y\":417},{\"x\":1074,\"y\":417},{\"x\":1074,\"y\":447}]},{\"id\":\"f95b1efc-c471-47bb-b2a9-c08cc1cec9e3\",\"type\":\"polyline\",\"properties\":{},\"sourceNodeId\":\"7a3ed329-052e-4840-a64f-71dd394c5f32\",\"targetNodeId\":\"69a8ff50-d109-4f1f-94a3-28691bda018f\",\"startPoint\":{\"x\":924,\"y\":497},\"endPoint\":{\"x\":882,\"y\":497},\"pointsList\":[{\"x\":924,\"y\":497},{\"x\":894,\"y\":497},{\"x\":894,\"y\":497},{\"x\":912,\"y\":497},{\"x\":912,\"y\":497},{\"x\":882,\"y\":497}]},{\"id\":\"192f5b3a-7205-4ef2-b741-4b05eb8a5e32\",\"type\":\"polyline\",\"properties\":{},\"sourceNodeId\":\"69a8ff50-d109-4f1f-94a3-28691bda018f\",\"targetNodeId\":\"b11a344b-4f17-4ece-9ca0-bea597cff7e6\",\"startPoint\":{\"x\":732,\"y\":547},\"endPoint\":{\"x\":732,\"y\":707},\"pointsList\":[{\"x\":732,\"y\":547},{\"x\":732,\"y\":707}]},{\"id\":\"5b3a09ea-b14f-4ed8-a23d-38fdcb646068\",\"type\":\"polyline\",\"properties\":{},\"sourceNodeId\":\"b11a344b-4f17-4ece-9ca0-bea597cff7e6\",\"targetNodeId\":\"465fe39a-1f8d-4d51-91a1-d67e71cd7eda\",\"startPoint\":{\"x\":732,\"y\":807},\"endPoint\":{\"x\":732,\"y\":850},\"pointsList\":[{\"x\":732,\"y\":807},{\"x\":732,\"y\":837},{\"x\":732,\"y\":837},{\"x\":732,\"y\":820},{\"x\":732,\"y\":820},{\"x\":732,\"y\":850}]},{\"id\":\"b3dab2d7-0905-4228-bc6f-2cce0837cbbe\",\"type\":\"polyline\",\"properties\":{},\"sourceNodeId\":\"7a3ed329-052e-4840-a64f-71dd394c5f32\",\"targetNodeId\":\"3838834c-881e-4e8b-80eb-936e8e2f5429\",\"startPoint\":{\"x\":1224,\"y\":497},\"endPoint\":{\"x\":1280,\"y\":497},\"pointsList\":[{\"x\":1224,\"y\":497},{\"x\":1254,\"y\":497},{\"x\":1254,\"y\":497},{\"x\":1250,\"y\":497},{\"x\":1250,\"y\":497},{\"x\":1280,\"y\":497}]},{\"id\":\"e9708601-adc3-4845-8b03-b2164d3a004e\",\"type\":\"polyline\",\"properties\":{},\"sourceNodeId\":\"3838834c-881e-4e8b-80eb-936e8e2f5429\",\"targetNodeId\":\"052a36b5-bc6e-4bf2-9a80-88d50ec6fa93\",\"startPoint\":{\"x\":1430,\"y\":547},\"endPoint\":{\"x\":1430,\"y\":574},\"pointsList\":[{\"x\":1430,\"y\":547},{\"x\":1430,\"y\":577},{\"x\":1430,\"y\":577},{\"x\":1430,\"y\":544},{\"x\":1430,\"y\":544},{\"x\":1430,\"y\":574}]},{\"id\":\"9624634e-8f4c-4638-b28b-918f1b3d6dea\",\"type\":\"polyline\",\"properties\":{},\"sourceNodeId\":\"052a36b5-bc6e-4bf2-9a80-88d50ec6fa93\",\"targetNodeId\":\"736705a1-ff13-449c-be95-eca3aef667fe\",\"startPoint\":{\"x\":1430,\"y\":674},\"endPoint\":{\"x\":1429,\"y\":707},\"pointsList\":[{\"x\":1430,\"y\":674},{\"x\":1430,\"y\":704},{\"x\":1429.5,\"y\":704},{\"x\":1429.5,\"y\":677},{\"x\":1429,\"y\":677},{\"x\":1429,\"y\":707}]},{\"id\":\"7f40029f-135d-48e6-b27a-b99973310542\",\"type\":\"polyline\",\"properties\":{},\"sourceNodeId\":\"736705a1-ff13-449c-be95-eca3aef667fe\",\"targetNodeId\":\"b11a344b-4f17-4ece-9ca0-bea597cff7e6\",\"startPoint\":{\"x\":1279,\"y\":757},\"endPoint\":{\"x\":882,\"y\":757},\"pointsList\":[{\"x\":1279,\"y\":757},{\"x\":882,\"y\":757}]},{\"id\":\"3ff4b023-ebf1-452d-a574-f3a99ee4ac9e\",\"type\":\"polyline\",\"properties\":{},\"sourceNodeId\":\"465fe39a-1f8d-4d51-91a1-d67e71cd7eda\",\"targetNodeId\":\"8f523bac-f8ae-485a-94cb-6cece9c39b01\",\"startPoint\":{\"x\":882,\"y\":900},\"endPoint\":{\"x\":936,\"y\":900},\"pointsList\":[{\"x\":882,\"y\":900},{\"x\":912,\"y\":900},{\"x\":912,\"y\":900},{\"x\":906,\"y\":900},{\"x\":906,\"y\":900},{\"x\":936,\"y\":900}]},{\"id\":\"fb4f7053-0a57-4708-bbea-3e210e929a12\",\"type\":\"polyline\",\"properties\":{},\"sourceNodeId\":\"8f523bac-f8ae-485a-94cb-6cece9c39b01\",\"targetNodeId\":\"08c05047-3948-4e9d-b650-8e052ebc698c\",\"startPoint\":{\"x\":1086,\"y\":950},\"endPoint\":{\"x\":1086,\"y\":993},\"pointsList\":[{\"x\":1086,\"y\":950},{\"x\":1086,\"y\":980},{\"x\":1086,\"y\":980},{\"x\":1086,\"y\":963},{\"x\":1086,\"y\":963},{\"x\":1086,\"y\":993}]},{\"id\":\"aa9fffde-9bbe-4ba2-8e60-d7eb7296c478\",\"type\":\"polyline\",\"properties\":{},\"sourceNodeId\":\"08c05047-3948-4e9d-b650-8e052ebc698c\",\"targetNodeId\":\"99292bae-92f8-4b07-8571-251b1cb35396\",\"startPoint\":{\"x\":1086,\"y\":1093},\"endPoint\":{\"x\":1086,\"y\":1132},\"pointsList\":[{\"x\":1086,\"y\":1093},{\"x\":1086,\"y\":1123},{\"x\":1086,\"y\":1123},{\"x\":1086,\"y\":1102},{\"x\":1086,\"y\":1102},{\"x\":1086,\"y\":1132}]}]}', '0'), @@ -3084,60 +3095,64 @@ INSERT INTO `experiment_review` (`id`, `create_by`, `create_time`, `update_by`, INSERT INTO `experiment_sample_info` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `experiment_id`, `sample_type`, `sample_model`, `sample_batch`, `sample_manufacturer`, `sample_image`, `sample_name`) VALUES ('1', NULL, NULL, NULL, NULL, NULL, '1863780910170206210', '1', '1', '1', '1', '1', NULL); -INSERT INTO `experiment_test_process` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `radiation_source`, `measurement_rate`, `radiation_standard`, `environmental_temperature`, `comment`, `exception_record`, `radiation_detail`, `experiment_id`, `test_start_time`, `test_end_time`, `environmental_humidity`, `test_parameters`, `test_equipment`, `test_metering_point`, `test_fluence_point`, `annealing_duration`, `test_data`, `test_result`) VALUES -('1729951608683', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1849101192671113217', '2024-10-26 22:06:48', '2024-10-26 22:06:48', '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格'), -('1729959035699', 'caoxiang', '2024-10-27 00:11:27', 'caoxiang', '2024-10-28 10:53:20', NULL, NULL, NULL, NULL, '20', NULL, NULL, NULL, '1845361500624625666', '2024-10-27 00:10:35', '2024-10-27 00:10:35', '30', '[]', '[]', '10', '20', '30', '[{\"key\":\"1\",\"url\":\"http://58.215.212.230:8005/oss/physical/temp/import-mobile_1729959080315.xlsx\",\"fileName\":\"import-mobile.xlsx\"}]', '超差'), -('1731055457744', 'admin', '2024-11-08 16:45:38', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '2', NULL, NULL, '1851539266860589058', '2024-11-08 16:44:17', '2024-11-08 16:44:17', '22', '[]', '[]', '22', '22', '22', '[]', '合格'), -('1731076576757', 'admin', '2024-11-08 22:38:07', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '22', NULL, NULL, '1845361500624625666', '2024-11-08 22:36:16', '2024-11-08 22:36:16', '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[]', '22', '22', '22', '[]', '合格'), -('1731574027586', 'admin', '2024-11-14 16:49:28', NULL, NULL, 'A01', NULL, NULL, NULL, '22', NULL, NULL, NULL, '1856973397732450305', '2024-11-14 16:47:07', '2024-11-14 16:47:07', '22', '[]', '[]', '22', '22', '22', '[]', '合格'), -('1732019900697', 'caoxiang', '2024-11-19 20:38:53', 'caoxiang', '2024-11-19 20:39:51', 'A01', NULL, NULL, NULL, '22', '22', '11', NULL, '1858789172747259906', '2024-11-05 20:38:20', '2024-11-19 20:38:20', '22', '[{\"key\":\"8b0279ef764346b8a402ea5927c2839c\",\"name\":\"123\"}]', '[{\"key\":\"154a11de3f0e464185a85ad382603c4b\",\"sample_model\":\"1\",\"equipment_model\":\"1849091590583857154\",\"equipment_name\":\"002\",\"lifespan\":\"2024-10-23\"}]', '222', '22', '22', '[]', '超差'), -('1732503951743', 'zhangru', '2024-11-25 11:06:47', NULL, NULL, NULL, NULL, NULL, NULL, '20', NULL, NULL, NULL, '1860876355205931009', '2024-11-25 11:05:51', '2024-11-25 11:05:51', '20', '[]', '[]', '30', '10', '10', '[]', '合格'), -('1732504119589', 'zhangru', '2024-11-25 11:09:54', NULL, NULL, NULL, NULL, NULL, NULL, '20', NULL, NULL, NULL, '1860876355205931009', '2024-11-25 11:08:39', '2024-11-25 11:08:39', '30', '[]', '[{\"key\":\"11a19e1d8ad14e1dbbe1749215710341\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '120', '100', '10', '[]', '超差'), -('1732514164483', 'zhangru', '2024-11-25 13:58:18', NULL, NULL, NULL, NULL, NULL, NULL, '20', NULL, NULL, NULL, '1860925388435824642', '2024-11-25 13:56:04', '2024-11-25 13:56:04', '20', '[{\"key\":\"6e45e5575d5c4fcb97bc9e0c3a9fda43\",\"name\":\"123\"}]', '[{\"key\":\"0f4b01b2dffb4cf88b6601fb78781c00\"}]', '10', '10', '10', '[]', '合格'), -('1732514475985', 'zhangru', '2024-11-25 14:18:20', NULL, NULL, NULL, NULL, NULL, NULL, '20', NULL, NULL, NULL, '1860925388435824642', '2024-11-25 14:01:15', '2024-11-25 14:01:15', '20', '[{\"key\":\"4372935f809241748f0be857f198369b\",\"name\":\"123\"}]', '[]', '10', '10', '10', '[]', '合格'), -('1732516309786', 'zhangru', '2024-11-25 14:36:48', NULL, NULL, NULL, NULL, NULL, NULL, '20', NULL, NULL, NULL, '1860876355205931009', '2024-11-25 14:31:49', '2024-11-25 14:31:49', '20', '[{\"key\":\"c00ca6d68bd2492eb1bc54fe51379860\",\"name\":\"123\"}]', '[{\"key\":\"509b8ebb5bad4b4e8135af2e71841090\"}]', '20', '20', '20', '[]', '超差'), -('1856973542867951618', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1856973541647409153', NULL, NULL, '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格'), -('1856974031479201794', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1856974030384488450', NULL, NULL, '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格'), -('1856974205433765890', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1856974204343246849', NULL, NULL, '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格'), -('1856983625686327297', 'admin', '2024-11-08 16:45:38', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '2', NULL, NULL, '1856983624738414593', NULL, NULL, '22', '[]', '[]', '22', '22', '22', '[]', '合格'), -('1856986617054584834', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1856986615460749313', NULL, NULL, '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格'), -('1856987583553216514', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1856987581774831617', NULL, NULL, '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格'), -('1856988179400237058', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1856988177760264193', NULL, NULL, '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格'), -('1856996394870595585', 'admin', '2024-11-08 16:45:38', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '2', NULL, NULL, '1856996393805242370', NULL, NULL, '22', '[]', '[]', '22', '22', '22', '[]', '合格'), -('1860884040928272385', 'zhangru', '2024-11-25 11:11:44', 'zhangru', '2024-11-25 11:12:04', NULL, NULL, NULL, NULL, '30', '111111111111111111111111111111111111111111111111111111111111111111', '111111111111111111111111111111111111111111111111111111111111111111', NULL, '1860876355205931009', '2024-11-25 11:10:59', '2024-11-25 11:10:59', '30', '[]', '[]', '10', '测试', '测试', '[]', '功能失效'), -('1861581297927401474', 'zhangru', '2024-11-27 09:22:23', NULL, NULL, NULL, NULL, NULL, NULL, '20', '5', '5', NULL, '1861580310676320257', '2024-11-27 09:18:32', '2024-11-27 09:18:32', '20', '[{\"key\":\"a37c941637df455d914de380007f50b6\",\"name\":\"123\"},{\"key\":\"65884ae6e2b247339b627bce097ab869\",\"name\":\"测试参数1\"},{\"key\":\"1c40dd1443394819962c233be5852763\",\"name\":\"测试参数1\"},{\"key\":\"0d7887260ac4432891db353f361e3fb9\",\"name\":\"123\"}]', '[{\"key\":\"9c5a571666b44447bfb2f3f3b83b923c\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"380b355e023d43098ccafc51890341f7\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"03d5fd63a3bc40fc8c637e5263a50416\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"607184be9b9d4d6495eb8fa456391b94\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"c219446f3ad448a997c97c5b580329a6\"}]', '5', '5', '5', '[{\"key\":\"9a29336eb1b84cc0a6eec451d654e996\",\"url\":\"/oss/physical/temp/data(1)_1732670511204.csv\",\"fileName\":\"data(1).csv\"},{\"key\":\"6ae95517a04d49b8873cd4c1f37c2599\",\"url\":\"/oss/physical/temp/理化所改造需求描述_1732670518303.docx\",\"fileName\":\"理化所改造需求描述.docx\"}]', '功能失效'), -('1861581498746482690', 'zhangru', '2024-11-27 09:23:10', NULL, NULL, NULL, NULL, NULL, NULL, '20', '11111', '异常记录', NULL, '1861580310676320257', '2024-11-27 09:18:32', '2024-11-27 09:18:32', '20', '[{\"key\":\"f83de4cfd565434ca2fa76a103fd4971\",\"name\":\"123\"}]', '[{\"key\":\"f3854862b25f4df88210bbb065b9c06d\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '20', '20', '20', '[{\"key\":\"6e325cd3c48f4e4d9d5ae45ee8c7922e\",\"url\":\"/oss/physical/temp/data(1)_1732670579290.csv\",\"fileName\":\"data(1).csv\"}]', '合格'), -('1861587567598186497', 'zhangru', '2024-11-27 09:22:23', NULL, NULL, NULL, NULL, NULL, NULL, '20', '5', '5', NULL, '1861587567342333954', NULL, NULL, '20', '[{\"key\":\"a37c941637df455d914de380007f50b6\",\"name\":\"123\"},{\"key\":\"65884ae6e2b247339b627bce097ab869\",\"name\":\"测试参数1\"},{\"key\":\"1c40dd1443394819962c233be5852763\",\"name\":\"测试参数1\"},{\"key\":\"0d7887260ac4432891db353f361e3fb9\",\"name\":\"123\"}]', '[{\"key\":\"9c5a571666b44447bfb2f3f3b83b923c\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"380b355e023d43098ccafc51890341f7\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"03d5fd63a3bc40fc8c637e5263a50416\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"607184be9b9d4d6495eb8fa456391b94\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"c219446f3ad448a997c97c5b580329a6\"}]', '5', '5', '5', '[{\"key\":\"9a29336eb1b84cc0a6eec451d654e996\",\"url\":\"/oss/physical/temp/data(1)_1732670511204.csv\",\"fileName\":\"data(1).csv\"},{\"key\":\"6ae95517a04d49b8873cd4c1f37c2599\",\"url\":\"/oss/physical/temp/理化所改造需求描述_1732670518303.docx\",\"fileName\":\"理化所改造需求描述.docx\"}]', '功能失效'), -('1861598252948328450', 'zhangru', '2024-11-27 09:22:23', NULL, NULL, NULL, NULL, NULL, NULL, '20', '5', '5', NULL, '1861598252377903105', NULL, NULL, '20', '[{\"key\":\"a37c941637df455d914de380007f50b6\",\"name\":\"123\"},{\"key\":\"65884ae6e2b247339b627bce097ab869\",\"name\":\"测试参数1\"},{\"key\":\"1c40dd1443394819962c233be5852763\",\"name\":\"测试参数1\"},{\"key\":\"0d7887260ac4432891db353f361e3fb9\",\"name\":\"123\"}]', '[{\"key\":\"9c5a571666b44447bfb2f3f3b83b923c\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"380b355e023d43098ccafc51890341f7\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"03d5fd63a3bc40fc8c637e5263a50416\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"607184be9b9d4d6495eb8fa456391b94\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"c219446f3ad448a997c97c5b580329a6\"}]', '5', '5', '5', '[{\"key\":\"9a29336eb1b84cc0a6eec451d654e996\",\"url\":\"/oss/physical/temp/data(1)_1732670511204.csv\",\"fileName\":\"data(1).csv\"},{\"key\":\"6ae95517a04d49b8873cd4c1f37c2599\",\"url\":\"/oss/physical/temp/理化所改造需求描述_1732670518303.docx\",\"fileName\":\"理化所改造需求描述.docx\"}]', '功能失效'), -('1861598253015437313', 'zhangru', '2024-11-27 09:23:10', NULL, NULL, NULL, NULL, NULL, NULL, '20', '11111', '异常记录', NULL, '1861598252377903105', NULL, NULL, '20', '[{\"key\":\"f83de4cfd565434ca2fa76a103fd4971\",\"name\":\"123\"}]', '[{\"key\":\"f3854862b25f4df88210bbb065b9c06d\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '20', '20', '20', '[{\"key\":\"6e325cd3c48f4e4d9d5ae45ee8c7922e\",\"url\":\"/oss/physical/temp/data(1)_1732670579290.csv\",\"fileName\":\"data(1).csv\"}]', '合格'), -('1862691862005510146', 'caoxiang', '2024-11-30 10:55:22', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '22', NULL, NULL, '1862644923750772738', '2024-11-30 10:54:45', '2024-11-30 10:54:45', '22', '[]', '[{\"key\":\"378c2b2466fc4c6a9e491a1d0fd57dc5\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"测试型号\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"06a1097a9f1a4d2290e17ebcf885d6eb\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"测试型号1\",\"equipment_name\":\"测试名称1\",\"lifespan\":\"2024-11-29\"}]', '22', '22', '22', '[]', '合格'), -('1862692323521556481', 'caoxiang', '2024-11-30 10:55:22', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '22', NULL, NULL, '1862692323374755842', NULL, NULL, '22', '[]', '[{\"key\":\"378c2b2466fc4c6a9e491a1d0fd57dc5\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"测试型号\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"06a1097a9f1a4d2290e17ebcf885d6eb\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"测试型号1\",\"equipment_name\":\"测试名称1\",\"lifespan\":\"2024-11-29\"}]', '22', '22', '22', '[]', '合格'), -('1862700545930260482', 'zhangru', '2024-11-30 11:29:52', 'caoxiang', '2024-12-02 22:34:42', 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1862644923750772738', '2024-11-30 11:28:55', '2024-11-30 11:28:55', '20', '[{\"key\":\"f9084814f7944e6ebf467a849e6d10a2\",\"name\":\"测试参数1\"}]', '[{\"key\":\"284b95beff404710a77d7c29d8ddcc8c\"}]', '5', '5', '5', '[]', '功能失效'), -('1863383863839518721', 'zhangru', '2024-12-02 08:45:08', 'zhangru', '2024-12-02 08:45:16', 'A01', NULL, NULL, NULL, '20', '20', '20', NULL, '1863381782466490369', '2024-12-02 08:43:27', '2024-12-02 08:43:27', '20', '[{\"key\":\"1ddd078afe6e4944b8dbc7d158ba0461\"}]', '[{\"key\":\"9e7eacdc504f447a877b058dc77a4163\"}]', '20', '20', '20', '[{\"key\":\"a560140722e1487f8c9b1f85668261fd\",\"url\":\"/oss/physical/temp/data(1)_1733100291986.csv\",\"fileName\":\"data(1).csv\"}]', '功能失效'), -('1863384210670710785', 'zhangru', '2024-12-02 08:46:30', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863381782466490369', '2024-12-02 08:45:43', '2024-12-02 08:45:43', '20', '[{\"key\":\"3b828def6c1e44d5bff5554daa374ba4\"}]', '[{\"key\":\"2de2204c1cc84a9ca82e33cdcc0040c6\"}]', '20', '20', '20', '[{\"key\":\"9cc224d7b8cd4bb8b377e337992ffd84\"}]', '超差'), -('1863386296728776706', 'zhangru', '2024-12-02 08:45:08', 'zhangru', '2024-12-02 08:45:16', 'A01', NULL, NULL, NULL, '20', '20', '20', NULL, '1863386296481312769', NULL, NULL, '20', '[{\"key\":\"1ddd078afe6e4944b8dbc7d158ba0461\"}]', '[{\"key\":\"9e7eacdc504f447a877b058dc77a4163\"}]', '20', '20', '20', '[{\"key\":\"a560140722e1487f8c9b1f85668261fd\",\"url\":\"/oss/physical/temp/data(1)_1733100291986.csv\",\"fileName\":\"data(1).csv\"}]', '功能失效'), -('1863386296762331137', 'zhangru', '2024-12-02 08:46:30', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863386296481312769', NULL, NULL, '20', '[{\"key\":\"3b828def6c1e44d5bff5554daa374ba4\"}]', '[{\"key\":\"2de2204c1cc84a9ca82e33cdcc0040c6\"}]', '20', '20', '20', '[{\"key\":\"9cc224d7b8cd4bb8b377e337992ffd84\"}]', '超差'), -('1863397352108814337', 'zhangru', '2024-12-02 09:38:44', 'zhangru', '2024-12-02 09:38:58', 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1862700915955953665', '2024-12-02 09:34:04', '2024-12-02 09:34:04', '20', '[{\"key\":\"f69d4ad993e941f88230d8b5d4875eef\"}]', '[{\"key\":\"745ecf003d1644e398059704fa343c66\"}]', '25', '25', '10', '[{\"key\":\"4221d54e53ff432c8b95d196ba8faf3c\"}]', '功能失效'), -('1863397763268046850', 'zhangru', '2024-12-02 09:40:22', 'zhangru', '2024-12-02 09:55:05', 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1862700915955953665', '2024-12-02 09:34:04', '2024-12-02 09:34:04', '20', '[]', '[]', '20', '20', '20', '[]', '合格'), -('1863752393118281729', 'zhangru', '2024-12-03 09:09:32', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1862700915955953665', '2024-12-03 09:06:59', '2024-12-03 09:06:59', '20', '[]', '[]', '20', '20', '20', '[{\"key\":\"1a23369d145442aab4a6dde4d4a2a5ee\"}]', '超差'), -('1863772006921105410', 'zhangru', '2024-12-03 10:27:28', 'zhangru', '2024-12-03 10:29:21', 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1862700915955953665', '2024-12-03 10:25:42', '2024-12-03 10:25:42', '80', '[]', '[]', '30', '30', '30', '[]', '合格'), -('1863773425258557442', 'zhangru', '2024-12-03 10:33:06', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1862700915955953665', '2024-12-03 10:29:02', '2024-12-03 10:29:02', '20', '[]', '[]', '20', '20', '20', '[]', '合格'), -('1863781163086737410', 'zhangru', '2024-12-03 11:03:51', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863780910170206210', '2024-12-03 11:03:04', '2024-12-03 11:03:04', '20', '[]', '[]', '10', '10', '10', '[]', '合格'), -('1863782858822873090', 'zhangru', '2024-12-03 11:03:51', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863782858663489537', NULL, NULL, '20', '[]', '[]', '10', '10', '10', '[]', '合格'), -('1863782878510936065', 'zhangru', '2024-12-03 11:03:51', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863782878380912641', NULL, NULL, '20', '[]', '[]', '10', '10', '10', '[]', '合格'), -('1863863733606510593', 'caoxiang', '2024-12-03 16:31:58', NULL, NULL, 'A01', NULL, NULL, NULL, '22', NULL, NULL, NULL, '1863851214359851010', '2024-12-03 16:25:09', '2024-12-03 16:25:09', '22', '[{\"key\":\"76e8aa09dda34b059ddc06fd08f545de\"}]', '[]', '22', '22', '22', '[]', '合格'), -('1863867139326832641', 'caoxiang', '2024-12-03 16:45:30', 'caoxiang', '2024-12-03 16:50:17', 'A01', NULL, NULL, NULL, '22', NULL, NULL, NULL, '1863851214359851010', '2024-12-03 16:44:14', '2024-12-03 16:44:14', '22', '[{\"key\":\"f3d93ff00b314b6fb7c945b601a48b13\",\"name\":\"测试参数1\"}]', '[{\"key\":\"ef459c190cf049a49358fbd4d4027c0a\",\"sample_model\":\"1\",\"equipment_model\":\"982183\",\"equipment_name\":\"002\",\"lifespan\":\"2024-10-23\"}]', '22', '22', '22', '[{\"key\":\"60b87d80aba14303bfe5f45b8f661b78\",\"url\":\"/oss/physical/temp/新建文本文档_1733215784664.txt\",\"fileName\":\"新建文本文档.txt\"}]', '合格'), -('1863896655105454082', 'zhangru', '2024-12-03 18:42:47', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863851214359851010', '2024-12-03 18:39:40', '2024-12-03 18:39:40', '20', '[{\"key\":\"17a51d8cb1384b9d9f26e21aff546512\",\"name\":\"测试参数1\"}]', '[{\"key\":\"c9507968db564eac9beba59c69ec7bf2\",\"sample_model\":\"1\",\"equipment_model\":\"测试型号\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '12', '12', '12', '[{\"key\":\"641ba8522d9e46c59443857867fd2779\",\"url\":\"/oss/physical/temp/新建DOC文档_1733222529080.doc\",\"fileName\":\"新建 DOC 文档.doc\"},{\"key\":\"051126c49f6c47faad6c9795358221df\",\"url\":\"/oss/physical/temp/新建DOCX文档_1733222537805.docx\",\"fileName\":\"新建 DOCX 文档.docx\"},{\"key\":\"b277292d7e8f4cea9f2c9037307798c3\",\"url\":\"/oss/physical/temp/新建XLSX工作表_1733222543594.xlsx\",\"fileName\":\"新建 XLSX 工作表.xlsx\"}]', '合格'), -('1863898586376925186', 'caoxiang', '2024-12-03 16:31:58', NULL, NULL, 'A01', NULL, NULL, NULL, '22', NULL, NULL, NULL, '1863898586251096065', NULL, NULL, '22', '[{\"key\":\"76e8aa09dda34b059ddc06fd08f545de\"}]', '[]', '22', '22', '22', '[]', '合格'), -('1863898586406285313', 'caoxiang', '2024-12-03 16:45:30', 'caoxiang', '2024-12-03 16:50:17', 'A01', NULL, NULL, NULL, '22', NULL, NULL, NULL, '1863898586251096065', NULL, NULL, '22', '[{\"key\":\"f3d93ff00b314b6fb7c945b601a48b13\",\"name\":\"测试参数1\"}]', '[{\"key\":\"ef459c190cf049a49358fbd4d4027c0a\",\"sample_model\":\"1\",\"equipment_model\":\"982183\",\"equipment_name\":\"002\",\"lifespan\":\"2024-10-23\"}]', '22', '22', '22', '[{\"key\":\"60b87d80aba14303bfe5f45b8f661b78\",\"url\":\"/oss/physical/temp/新建文本文档_1733215784664.txt\",\"fileName\":\"新建文本文档.txt\"}]', '合格'), -('1863898586465005569', 'zhangru', '2024-12-03 18:42:47', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863898586251096065', NULL, NULL, '20', '[{\"key\":\"17a51d8cb1384b9d9f26e21aff546512\",\"name\":\"测试参数1\"}]', '[{\"key\":\"c9507968db564eac9beba59c69ec7bf2\",\"sample_model\":\"1\",\"equipment_model\":\"测试型号\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '12', '12', '12', '[{\"key\":\"641ba8522d9e46c59443857867fd2779\",\"url\":\"/oss/physical/temp/新建DOC文档_1733222529080.doc\",\"fileName\":\"新建 DOC 文档.doc\"},{\"key\":\"051126c49f6c47faad6c9795358221df\",\"url\":\"/oss/physical/temp/新建DOCX文档_1733222537805.docx\",\"fileName\":\"新建 DOCX 文档.docx\"},{\"key\":\"b277292d7e8f4cea9f2c9037307798c3\",\"url\":\"/oss/physical/temp/新建XLSX工作表_1733222543594.xlsx\",\"fileName\":\"新建 XLSX 工作表.xlsx\"}]', '合格'), -('1864108888859176961', 'zhangru', '2024-12-04 08:46:07', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1864108428710473730', '2024-12-04 08:44:56', '2024-12-04 08:44:56', '20', '[{\"key\":\"b3e810ebed2845bb8c35b016b76ce186\",\"name\":\"测试参数1\"}]', '[{\"key\":\"024de470fbcc4154a663068e9478bb18\",\"sample_model\":\"样品型号\",\"equipment_model\":\"测试型号\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '2', '2', '2', '[{\"key\":\"743647a26a7c47dd9670a42351411da6\",\"url\":\"/oss/physical/temp/data(1)_1733273153922.csv\",\"fileName\":\"data(1).csv\"}]', '合格'), -('1864110227433549826', 'zhangru', '2024-12-04 08:46:07', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1864110227236417538', NULL, NULL, '20', '[{\"key\":\"b3e810ebed2845bb8c35b016b76ce186\",\"name\":\"测试参数1\"}]', '[{\"key\":\"024de470fbcc4154a663068e9478bb18\",\"sample_model\":\"样品型号\",\"equipment_model\":\"测试型号\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '2', '2', '2', '[{\"key\":\"743647a26a7c47dd9670a42351411da6\",\"url\":\"/oss/physical/temp/data(1)_1733273153922.csv\",\"fileName\":\"data(1).csv\"}]', '合格'), -('1864213862205190146', 'zhangru', '2024-12-04 15:43:15', NULL, NULL, 'A01', NULL, NULL, NULL, '25', NULL, NULL, NULL, '1864210739042545665', '2024-12-04 15:40:12', '2024-12-04 15:40:12', '25', '[{\"key\":\"07f41e6de5e24904af78120521fd5536\",\"name\":\"测试参数1\"}]', '[{\"key\":\"2a747c5ac7784b35873baa4452c99bab\",\"sample_model\":\"型号1\",\"equipment_model\":\"测试型号1\",\"equipment_name\":\"测试名称1\",\"lifespan\":\"2024-11-29\"}]', '1', '2', '3', '[{\"key\":\"e6138e07e7674ce284716a5a36061970\",\"url\":\"/oss/physical/temp/测试数据_1733298110795.xls\",\"fileName\":\"测试数据.xls\"}]', '合格'), -('1864248251605676034', 'zhangru', '2024-12-04 17:59:54', NULL, NULL, 'A01', NULL, NULL, NULL, '25', NULL, NULL, NULL, '1864227118588194817', '2024-12-04 17:44:52', '2024-12-04 17:44:52', '25', '[{\"key\":\"b21622a87e9745d8831a6e89e1f0324f\",\"name\":\"测试参数1\"}]', '[{\"key\":\"5787debb7c8d4d1596d89be04ab111f6\",\"sample_model\":\"2\",\"equipment_model\":\"982183\",\"equipment_name\":\"002\",\"lifespan\":\"2024-10-23\"}]', '1', '2', '3', '[{\"key\":\"a2536225980943abbb911b4ed302d47b\",\"url\":\"/oss/physical/temp/测试数据_1733306194185.xls\",\"fileName\":\"测试数据.xls\"}]', '合格'), -('1864257279761149953', 'zhangru', '2024-12-04 17:59:54', NULL, NULL, 'A01', NULL, NULL, NULL, '25', NULL, NULL, NULL, '1864257279610155010', NULL, NULL, '25', '[{\"key\":\"b21622a87e9745d8831a6e89e1f0324f\",\"name\":\"测试参数1\"}]', '[{\"key\":\"5787debb7c8d4d1596d89be04ab111f6\",\"sample_model\":\"2\",\"equipment_model\":\"982183\",\"equipment_name\":\"002\",\"lifespan\":\"2024-10-23\"}]', '1', '2', '3', '[{\"key\":\"a2536225980943abbb911b4ed302d47b\",\"url\":\"/oss/physical/temp/测试数据_1733306194185.xls\",\"fileName\":\"测试数据.xls\"}]', '合格'), -('1864257450821644290', 'zhangru', '2024-12-04 17:59:54', NULL, NULL, 'A01', NULL, NULL, NULL, '25', NULL, NULL, NULL, '1864257450679037954', NULL, NULL, '25', '[{\"key\":\"b21622a87e9745d8831a6e89e1f0324f\",\"name\":\"测试参数1\"}]', '[{\"key\":\"5787debb7c8d4d1596d89be04ab111f6\",\"sample_model\":\"2\",\"equipment_model\":\"982183\",\"equipment_name\":\"002\",\"lifespan\":\"2024-10-23\"}]', '1', '2', '3', '[{\"key\":\"a2536225980943abbb911b4ed302d47b\",\"url\":\"/oss/physical/temp/测试数据_1733306194185.xls\",\"fileName\":\"测试数据.xls\"}]', '合格'), -('1864285135509745665', 'zhangru', '2024-12-04 20:26:28', NULL, NULL, 'A01', NULL, NULL, NULL, '25', NULL, NULL, NULL, '1864210739042545665', '2024-12-04 20:06:52', '2024-12-04 20:06:52', '25', '[{\"key\":\"7b97a71b2c1e4b549dc48ef1d57f2bfc\",\"name\":\"测试参数1\"}]', '[{\"key\":\"93be00050e674e9884c60aa0b4380474\",\"sample_model\":\"1\",\"equipment_model\":\"0007\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '2', '3', '[{\"key\":\"90dfcf9efdc546479f079c3151daf711\",\"url\":\"/oss/physical/temp/测试数据_1733315171092.xls\",\"fileName\":\"测试数据.xls\"}]', '合格'); +INSERT INTO `experiment_sequence` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `sequence_value`, `sequence_year`) VALUES +('1864548692026564609', 'admin', '2024-12-05 13:53:44', NULL, NULL, 'A01', 0, '2024'); + +INSERT INTO `experiment_test_process` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `radiation_source`, `measurement_rate`, `radiation_standard`, `environmental_temperature`, `comment`, `exception_record`, `radiation_detail`, `experiment_id`, `test_start_time`, `test_end_time`, `environmental_humidity`, `test_parameters`, `test_equipment`, `test_metering_point`, `test_fluence_point`, `annealing_duration`, `test_data`, `test_result`, `test_standards_id`) VALUES +('1729951608683', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1849101192671113217', '2024-10-26 22:06:48', '2024-10-26 22:06:48', '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格', NULL), +('1729959035699', 'caoxiang', '2024-10-27 00:11:27', 'caoxiang', '2024-10-28 10:53:20', NULL, NULL, NULL, NULL, '20', NULL, NULL, NULL, '1845361500624625666', '2024-10-27 00:10:35', '2024-10-27 00:10:35', '30', '[]', '[]', '10', '20', '30', '[{\"key\":\"1\",\"url\":\"http://58.215.212.230:8005/oss/physical/temp/import-mobile_1729959080315.xlsx\",\"fileName\":\"import-mobile.xlsx\"}]', '超差', NULL), +('1731055457744', 'admin', '2024-11-08 16:45:38', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '2', NULL, NULL, '1851539266860589058', '2024-11-08 16:44:17', '2024-11-08 16:44:17', '22', '[]', '[]', '22', '22', '22', '[]', '合格', NULL), +('1731076576757', 'admin', '2024-11-08 22:38:07', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '22', NULL, NULL, '1845361500624625666', '2024-11-08 22:36:16', '2024-11-08 22:36:16', '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[]', '22', '22', '22', '[]', '合格', NULL), +('1731574027586', 'admin', '2024-11-14 16:49:28', NULL, NULL, 'A01', NULL, NULL, NULL, '22', NULL, NULL, NULL, '1856973397732450305', '2024-11-14 16:47:07', '2024-11-14 16:47:07', '22', '[]', '[]', '22', '22', '22', '[]', '合格', NULL), +('1732019900697', 'caoxiang', '2024-11-19 20:38:53', 'caoxiang', '2024-11-19 20:39:51', 'A01', NULL, NULL, NULL, '22', '22', '11', NULL, '1858789172747259906', '2024-11-05 20:38:20', '2024-11-19 20:38:20', '22', '[{\"key\":\"8b0279ef764346b8a402ea5927c2839c\",\"name\":\"123\"}]', '[{\"key\":\"154a11de3f0e464185a85ad382603c4b\",\"sample_model\":\"1\",\"equipment_model\":\"1849091590583857154\",\"equipment_name\":\"002\",\"lifespan\":\"2024-10-23\"}]', '222', '22', '22', '[]', '超差', NULL), +('1732503951743', 'zhangru', '2024-11-25 11:06:47', NULL, NULL, NULL, NULL, NULL, NULL, '20', NULL, NULL, NULL, '1860876355205931009', '2024-11-25 11:05:51', '2024-11-25 11:05:51', '20', '[]', '[]', '30', '10', '10', '[]', '合格', NULL), +('1732504119589', 'zhangru', '2024-11-25 11:09:54', NULL, NULL, NULL, NULL, NULL, NULL, '20', NULL, NULL, NULL, '1860876355205931009', '2024-11-25 11:08:39', '2024-11-25 11:08:39', '30', '[]', '[{\"key\":\"11a19e1d8ad14e1dbbe1749215710341\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '120', '100', '10', '[]', '超差', NULL), +('1732514164483', 'zhangru', '2024-11-25 13:58:18', NULL, NULL, NULL, NULL, NULL, NULL, '20', NULL, NULL, NULL, '1860925388435824642', '2024-11-25 13:56:04', '2024-11-25 13:56:04', '20', '[{\"key\":\"6e45e5575d5c4fcb97bc9e0c3a9fda43\",\"name\":\"123\"}]', '[{\"key\":\"0f4b01b2dffb4cf88b6601fb78781c00\"}]', '10', '10', '10', '[]', '合格', NULL), +('1732514475985', 'zhangru', '2024-11-25 14:18:20', NULL, NULL, NULL, NULL, NULL, NULL, '20', NULL, NULL, NULL, '1860925388435824642', '2024-11-25 14:01:15', '2024-11-25 14:01:15', '20', '[{\"key\":\"4372935f809241748f0be857f198369b\",\"name\":\"123\"}]', '[]', '10', '10', '10', '[]', '合格', NULL), +('1732516309786', 'zhangru', '2024-11-25 14:36:48', NULL, NULL, NULL, NULL, NULL, NULL, '20', NULL, NULL, NULL, '1860876355205931009', '2024-11-25 14:31:49', '2024-11-25 14:31:49', '20', '[{\"key\":\"c00ca6d68bd2492eb1bc54fe51379860\",\"name\":\"123\"}]', '[{\"key\":\"509b8ebb5bad4b4e8135af2e71841090\"}]', '20', '20', '20', '[]', '超差', NULL), +('1856973542867951618', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1856973541647409153', NULL, NULL, '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格', NULL), +('1856974031479201794', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1856974030384488450', NULL, NULL, '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格', NULL), +('1856974205433765890', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1856974204343246849', NULL, NULL, '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格', NULL), +('1856983625686327297', 'admin', '2024-11-08 16:45:38', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '2', NULL, NULL, '1856983624738414593', NULL, NULL, '22', '[]', '[]', '22', '22', '22', '[]', '合格', NULL), +('1856986617054584834', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1856986615460749313', NULL, NULL, '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格', NULL), +('1856987583553216514', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1856987581774831617', NULL, NULL, '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格', NULL), +('1856988179400237058', 'admin', '2024-10-26 22:08:02', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '1', NULL, NULL, '1856988177760264193', NULL, NULL, '22', '[{\"key\":\"1\",\"name\":\"123\"}]', '[{\"key\":\"1\",\"sample_model\":\"2\",\"equipment_model\":\"1849075773968330754\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"1\",\"name\":\"http://58.215.212.230:8005/oss/physical/temp/新建文本文档(2)_1729951653662.txt\"}]', '合格', NULL), +('1856996394870595585', 'admin', '2024-11-08 16:45:38', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '2', NULL, NULL, '1856996393805242370', NULL, NULL, '22', '[]', '[]', '22', '22', '22', '[]', '合格', NULL), +('1860884040928272385', 'zhangru', '2024-11-25 11:11:44', 'zhangru', '2024-11-25 11:12:04', NULL, NULL, NULL, NULL, '30', '111111111111111111111111111111111111111111111111111111111111111111', '111111111111111111111111111111111111111111111111111111111111111111', NULL, '1860876355205931009', '2024-11-25 11:10:59', '2024-11-25 11:10:59', '30', '[]', '[]', '10', '测试', '测试', '[]', '功能失效', NULL), +('1861581297927401474', 'zhangru', '2024-11-27 09:22:23', NULL, NULL, NULL, NULL, NULL, NULL, '20', '5', '5', NULL, '1861580310676320257', '2024-11-27 09:18:32', '2024-11-27 09:18:32', '20', '[{\"key\":\"a37c941637df455d914de380007f50b6\",\"name\":\"123\"},{\"key\":\"65884ae6e2b247339b627bce097ab869\",\"name\":\"测试参数1\"},{\"key\":\"1c40dd1443394819962c233be5852763\",\"name\":\"测试参数1\"},{\"key\":\"0d7887260ac4432891db353f361e3fb9\",\"name\":\"123\"}]', '[{\"key\":\"9c5a571666b44447bfb2f3f3b83b923c\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"380b355e023d43098ccafc51890341f7\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"03d5fd63a3bc40fc8c637e5263a50416\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"607184be9b9d4d6495eb8fa456391b94\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"c219446f3ad448a997c97c5b580329a6\"}]', '5', '5', '5', '[{\"key\":\"9a29336eb1b84cc0a6eec451d654e996\",\"url\":\"/oss/physical/temp/data(1)_1732670511204.csv\",\"fileName\":\"data(1).csv\"},{\"key\":\"6ae95517a04d49b8873cd4c1f37c2599\",\"url\":\"/oss/physical/temp/理化所改造需求描述_1732670518303.docx\",\"fileName\":\"理化所改造需求描述.docx\"}]', '功能失效', NULL), +('1861581498746482690', 'zhangru', '2024-11-27 09:23:10', NULL, NULL, NULL, NULL, NULL, NULL, '20', '11111', '异常记录', NULL, '1861580310676320257', '2024-11-27 09:18:32', '2024-11-27 09:18:32', '20', '[{\"key\":\"f83de4cfd565434ca2fa76a103fd4971\",\"name\":\"123\"}]', '[{\"key\":\"f3854862b25f4df88210bbb065b9c06d\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '20', '20', '20', '[{\"key\":\"6e325cd3c48f4e4d9d5ae45ee8c7922e\",\"url\":\"/oss/physical/temp/data(1)_1732670579290.csv\",\"fileName\":\"data(1).csv\"}]', '合格', NULL), +('1861587567598186497', 'zhangru', '2024-11-27 09:22:23', NULL, NULL, NULL, NULL, NULL, NULL, '20', '5', '5', NULL, '1861587567342333954', NULL, NULL, '20', '[{\"key\":\"a37c941637df455d914de380007f50b6\",\"name\":\"123\"},{\"key\":\"65884ae6e2b247339b627bce097ab869\",\"name\":\"测试参数1\"},{\"key\":\"1c40dd1443394819962c233be5852763\",\"name\":\"测试参数1\"},{\"key\":\"0d7887260ac4432891db353f361e3fb9\",\"name\":\"123\"}]', '[{\"key\":\"9c5a571666b44447bfb2f3f3b83b923c\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"380b355e023d43098ccafc51890341f7\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"03d5fd63a3bc40fc8c637e5263a50416\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"607184be9b9d4d6495eb8fa456391b94\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"c219446f3ad448a997c97c5b580329a6\"}]', '5', '5', '5', '[{\"key\":\"9a29336eb1b84cc0a6eec451d654e996\",\"url\":\"/oss/physical/temp/data(1)_1732670511204.csv\",\"fileName\":\"data(1).csv\"},{\"key\":\"6ae95517a04d49b8873cd4c1f37c2599\",\"url\":\"/oss/physical/temp/理化所改造需求描述_1732670518303.docx\",\"fileName\":\"理化所改造需求描述.docx\"}]', '功能失效', NULL), +('1861598252948328450', 'zhangru', '2024-11-27 09:22:23', NULL, NULL, NULL, NULL, NULL, NULL, '20', '5', '5', NULL, '1861598252377903105', NULL, NULL, '20', '[{\"key\":\"a37c941637df455d914de380007f50b6\",\"name\":\"123\"},{\"key\":\"65884ae6e2b247339b627bce097ab869\",\"name\":\"测试参数1\"},{\"key\":\"1c40dd1443394819962c233be5852763\",\"name\":\"测试参数1\"},{\"key\":\"0d7887260ac4432891db353f361e3fb9\",\"name\":\"123\"}]', '[{\"key\":\"9c5a571666b44447bfb2f3f3b83b923c\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"380b355e023d43098ccafc51890341f7\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"03d5fd63a3bc40fc8c637e5263a50416\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"607184be9b9d4d6495eb8fa456391b94\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"c219446f3ad448a997c97c5b580329a6\"}]', '5', '5', '5', '[{\"key\":\"9a29336eb1b84cc0a6eec451d654e996\",\"url\":\"/oss/physical/temp/data(1)_1732670511204.csv\",\"fileName\":\"data(1).csv\"},{\"key\":\"6ae95517a04d49b8873cd4c1f37c2599\",\"url\":\"/oss/physical/temp/理化所改造需求描述_1732670518303.docx\",\"fileName\":\"理化所改造需求描述.docx\"}]', '功能失效', NULL), +('1861598253015437313', 'zhangru', '2024-11-27 09:23:10', NULL, NULL, NULL, NULL, NULL, NULL, '20', '11111', '异常记录', NULL, '1861598252377903105', NULL, NULL, '20', '[{\"key\":\"f83de4cfd565434ca2fa76a103fd4971\",\"name\":\"123\"}]', '[{\"key\":\"f3854862b25f4df88210bbb065b9c06d\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"1853625558817677313\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '20', '20', '20', '[{\"key\":\"6e325cd3c48f4e4d9d5ae45ee8c7922e\",\"url\":\"/oss/physical/temp/data(1)_1732670579290.csv\",\"fileName\":\"data(1).csv\"}]', '合格', NULL), +('1862691862005510146', 'caoxiang', '2024-11-30 10:55:22', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '22', NULL, NULL, '1862644923750772738', '2024-11-30 10:54:45', '2024-11-30 10:54:45', '22', '[]', '[{\"key\":\"378c2b2466fc4c6a9e491a1d0fd57dc5\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"测试型号\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"06a1097a9f1a4d2290e17ebcf885d6eb\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"测试型号1\",\"equipment_name\":\"测试名称1\",\"lifespan\":\"2024-11-29\"}]', '22', '22', '22', '[]', '合格', NULL), +('1862692323521556481', 'caoxiang', '2024-11-30 10:55:22', NULL, NULL, 'A01', NULL, NULL, NULL, '22', '22', NULL, NULL, '1862692323374755842', NULL, NULL, '22', '[]', '[{\"key\":\"378c2b2466fc4c6a9e491a1d0fd57dc5\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"测试型号\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"},{\"key\":\"06a1097a9f1a4d2290e17ebcf885d6eb\",\"sample_model\":\"测试样品型号\",\"equipment_model\":\"测试型号1\",\"equipment_name\":\"测试名称1\",\"lifespan\":\"2024-11-29\"}]', '22', '22', '22', '[]', '合格', NULL), +('1862700545930260482', 'zhangru', '2024-11-30 11:29:52', 'caoxiang', '2024-12-02 22:34:42', 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1862644923750772738', '2024-11-30 11:28:55', '2024-11-30 11:28:55', '20', '[{\"key\":\"f9084814f7944e6ebf467a849e6d10a2\",\"name\":\"测试参数1\"}]', '[{\"key\":\"284b95beff404710a77d7c29d8ddcc8c\"}]', '5', '5', '5', '[]', '功能失效', NULL), +('1863383863839518721', 'zhangru', '2024-12-02 08:45:08', 'zhangru', '2024-12-02 08:45:16', 'A01', NULL, NULL, NULL, '20', '20', '20', NULL, '1863381782466490369', '2024-12-02 08:43:27', '2024-12-02 08:43:27', '20', '[{\"key\":\"1ddd078afe6e4944b8dbc7d158ba0461\"}]', '[{\"key\":\"9e7eacdc504f447a877b058dc77a4163\"}]', '20', '20', '20', '[{\"key\":\"a560140722e1487f8c9b1f85668261fd\",\"url\":\"/oss/physical/temp/data(1)_1733100291986.csv\",\"fileName\":\"data(1).csv\"}]', '功能失效', NULL), +('1863384210670710785', 'zhangru', '2024-12-02 08:46:30', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863381782466490369', '2024-12-02 08:45:43', '2024-12-02 08:45:43', '20', '[{\"key\":\"3b828def6c1e44d5bff5554daa374ba4\"}]', '[{\"key\":\"2de2204c1cc84a9ca82e33cdcc0040c6\"}]', '20', '20', '20', '[{\"key\":\"9cc224d7b8cd4bb8b377e337992ffd84\"}]', '超差', NULL), +('1863386296728776706', 'zhangru', '2024-12-02 08:45:08', 'zhangru', '2024-12-02 08:45:16', 'A01', NULL, NULL, NULL, '20', '20', '20', NULL, '1863386296481312769', NULL, NULL, '20', '[{\"key\":\"1ddd078afe6e4944b8dbc7d158ba0461\"}]', '[{\"key\":\"9e7eacdc504f447a877b058dc77a4163\"}]', '20', '20', '20', '[{\"key\":\"a560140722e1487f8c9b1f85668261fd\",\"url\":\"/oss/physical/temp/data(1)_1733100291986.csv\",\"fileName\":\"data(1).csv\"}]', '功能失效', NULL), +('1863386296762331137', 'zhangru', '2024-12-02 08:46:30', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863386296481312769', NULL, NULL, '20', '[{\"key\":\"3b828def6c1e44d5bff5554daa374ba4\"}]', '[{\"key\":\"2de2204c1cc84a9ca82e33cdcc0040c6\"}]', '20', '20', '20', '[{\"key\":\"9cc224d7b8cd4bb8b377e337992ffd84\"}]', '超差', NULL), +('1863397352108814337', 'zhangru', '2024-12-02 09:38:44', 'zhangru', '2024-12-02 09:38:58', 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1862700915955953665', '2024-12-02 09:34:04', '2024-12-02 09:34:04', '20', '[{\"key\":\"f69d4ad993e941f88230d8b5d4875eef\"}]', '[{\"key\":\"745ecf003d1644e398059704fa343c66\"}]', '25', '25', '10', '[{\"key\":\"4221d54e53ff432c8b95d196ba8faf3c\"}]', '功能失效', NULL), +('1863397763268046850', 'zhangru', '2024-12-02 09:40:22', 'zhangru', '2024-12-02 09:55:05', 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1862700915955953665', '2024-12-02 09:34:04', '2024-12-02 09:34:04', '20', '[]', '[]', '20', '20', '20', '[]', '合格', NULL), +('1863752393118281729', 'zhangru', '2024-12-03 09:09:32', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1862700915955953665', '2024-12-03 09:06:59', '2024-12-03 09:06:59', '20', '[]', '[]', '20', '20', '20', '[{\"key\":\"1a23369d145442aab4a6dde4d4a2a5ee\"}]', '超差', NULL), +('1863772006921105410', 'zhangru', '2024-12-03 10:27:28', 'zhangru', '2024-12-03 10:29:21', 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1862700915955953665', '2024-12-03 10:25:42', '2024-12-03 10:25:42', '80', '[]', '[]', '30', '30', '30', '[]', '合格', NULL), +('1863773425258557442', 'zhangru', '2024-12-03 10:33:06', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1862700915955953665', '2024-12-03 10:29:02', '2024-12-03 10:29:02', '20', '[]', '[]', '20', '20', '20', '[]', '合格', NULL), +('1863781163086737410', 'zhangru', '2024-12-03 11:03:51', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863780910170206210', '2024-12-03 11:03:04', '2024-12-03 11:03:04', '20', '[]', '[]', '10', '10', '10', '[]', '合格', NULL), +('1863782858822873090', 'zhangru', '2024-12-03 11:03:51', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863782858663489537', NULL, NULL, '20', '[]', '[]', '10', '10', '10', '[]', '合格', NULL), +('1863782878510936065', 'zhangru', '2024-12-03 11:03:51', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863782878380912641', NULL, NULL, '20', '[]', '[]', '10', '10', '10', '[]', '合格', NULL), +('1863863733606510593', 'caoxiang', '2024-12-03 16:31:58', NULL, NULL, 'A01', NULL, NULL, NULL, '22', NULL, NULL, NULL, '1863851214359851010', '2024-12-03 16:25:09', '2024-12-03 16:25:09', '22', '[{\"key\":\"76e8aa09dda34b059ddc06fd08f545de\"}]', '[]', '22', '22', '22', '[]', '合格', NULL), +('1863867139326832641', 'caoxiang', '2024-12-03 16:45:30', 'caoxiang', '2024-12-03 16:50:17', 'A01', NULL, NULL, NULL, '22', NULL, NULL, NULL, '1863851214359851010', '2024-12-03 16:44:14', '2024-12-03 16:44:14', '22', '[{\"key\":\"f3d93ff00b314b6fb7c945b601a48b13\",\"name\":\"测试参数1\"}]', '[{\"key\":\"ef459c190cf049a49358fbd4d4027c0a\",\"sample_model\":\"1\",\"equipment_model\":\"982183\",\"equipment_name\":\"002\",\"lifespan\":\"2024-10-23\"}]', '22', '22', '22', '[{\"key\":\"60b87d80aba14303bfe5f45b8f661b78\",\"url\":\"/oss/physical/temp/新建文本文档_1733215784664.txt\",\"fileName\":\"新建文本文档.txt\"}]', '合格', NULL), +('1863896655105454082', 'zhangru', '2024-12-03 18:42:47', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863851214359851010', '2024-12-03 18:39:40', '2024-12-03 18:39:40', '20', '[{\"key\":\"17a51d8cb1384b9d9f26e21aff546512\",\"name\":\"测试参数1\"}]', '[{\"key\":\"c9507968db564eac9beba59c69ec7bf2\",\"sample_model\":\"1\",\"equipment_model\":\"测试型号\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '12', '12', '12', '[{\"key\":\"641ba8522d9e46c59443857867fd2779\",\"url\":\"/oss/physical/temp/新建DOC文档_1733222529080.doc\",\"fileName\":\"新建 DOC 文档.doc\"},{\"key\":\"051126c49f6c47faad6c9795358221df\",\"url\":\"/oss/physical/temp/新建DOCX文档_1733222537805.docx\",\"fileName\":\"新建 DOCX 文档.docx\"},{\"key\":\"b277292d7e8f4cea9f2c9037307798c3\",\"url\":\"/oss/physical/temp/新建XLSX工作表_1733222543594.xlsx\",\"fileName\":\"新建 XLSX 工作表.xlsx\"}]', '合格', NULL), +('1863898586376925186', 'caoxiang', '2024-12-03 16:31:58', NULL, NULL, 'A01', NULL, NULL, NULL, '22', NULL, NULL, NULL, '1863898586251096065', NULL, NULL, '22', '[{\"key\":\"76e8aa09dda34b059ddc06fd08f545de\"}]', '[]', '22', '22', '22', '[]', '合格', NULL), +('1863898586406285313', 'caoxiang', '2024-12-03 16:45:30', 'caoxiang', '2024-12-03 16:50:17', 'A01', NULL, NULL, NULL, '22', NULL, NULL, NULL, '1863898586251096065', NULL, NULL, '22', '[{\"key\":\"f3d93ff00b314b6fb7c945b601a48b13\",\"name\":\"测试参数1\"}]', '[{\"key\":\"ef459c190cf049a49358fbd4d4027c0a\",\"sample_model\":\"1\",\"equipment_model\":\"982183\",\"equipment_name\":\"002\",\"lifespan\":\"2024-10-23\"}]', '22', '22', '22', '[{\"key\":\"60b87d80aba14303bfe5f45b8f661b78\",\"url\":\"/oss/physical/temp/新建文本文档_1733215784664.txt\",\"fileName\":\"新建文本文档.txt\"}]', '合格', NULL), +('1863898586465005569', 'zhangru', '2024-12-03 18:42:47', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1863898586251096065', NULL, NULL, '20', '[{\"key\":\"17a51d8cb1384b9d9f26e21aff546512\",\"name\":\"测试参数1\"}]', '[{\"key\":\"c9507968db564eac9beba59c69ec7bf2\",\"sample_model\":\"1\",\"equipment_model\":\"测试型号\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '12', '12', '12', '[{\"key\":\"641ba8522d9e46c59443857867fd2779\",\"url\":\"/oss/physical/temp/新建DOC文档_1733222529080.doc\",\"fileName\":\"新建 DOC 文档.doc\"},{\"key\":\"051126c49f6c47faad6c9795358221df\",\"url\":\"/oss/physical/temp/新建DOCX文档_1733222537805.docx\",\"fileName\":\"新建 DOCX 文档.docx\"},{\"key\":\"b277292d7e8f4cea9f2c9037307798c3\",\"url\":\"/oss/physical/temp/新建XLSX工作表_1733222543594.xlsx\",\"fileName\":\"新建 XLSX 工作表.xlsx\"}]', '合格', NULL), +('1864108888859176961', 'zhangru', '2024-12-04 08:46:07', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1864108428710473730', '2024-12-04 08:44:56', '2024-12-04 08:44:56', '20', '[{\"key\":\"b3e810ebed2845bb8c35b016b76ce186\",\"name\":\"测试参数1\"}]', '[{\"key\":\"024de470fbcc4154a663068e9478bb18\",\"sample_model\":\"样品型号\",\"equipment_model\":\"测试型号\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '2', '2', '2', '[{\"key\":\"743647a26a7c47dd9670a42351411da6\",\"url\":\"/oss/physical/temp/data(1)_1733273153922.csv\",\"fileName\":\"data(1).csv\"}]', '合格', NULL), +('1864110227433549826', 'zhangru', '2024-12-04 08:46:07', NULL, NULL, 'A01', NULL, NULL, NULL, '20', NULL, NULL, NULL, '1864110227236417538', NULL, NULL, '20', '[{\"key\":\"b3e810ebed2845bb8c35b016b76ce186\",\"name\":\"测试参数1\"}]', '[{\"key\":\"024de470fbcc4154a663068e9478bb18\",\"sample_model\":\"样品型号\",\"equipment_model\":\"测试型号\",\"equipment_name\":\"测试名称\",\"lifespan\":\"2024-11-05\"}]', '2', '2', '2', '[{\"key\":\"743647a26a7c47dd9670a42351411da6\",\"url\":\"/oss/physical/temp/data(1)_1733273153922.csv\",\"fileName\":\"data(1).csv\"}]', '合格', NULL), +('1864213862205190146', 'zhangru', '2024-12-04 15:43:15', NULL, NULL, 'A01', NULL, NULL, NULL, '25', NULL, NULL, NULL, '1864210739042545665', '2024-12-04 15:40:12', '2024-12-04 15:40:12', '25', '[{\"key\":\"07f41e6de5e24904af78120521fd5536\",\"name\":\"测试参数1\"}]', '[{\"key\":\"2a747c5ac7784b35873baa4452c99bab\",\"sample_model\":\"型号1\",\"equipment_model\":\"测试型号1\",\"equipment_name\":\"测试名称1\",\"lifespan\":\"2024-11-29\"}]', '1', '2', '3', '[{\"key\":\"e6138e07e7674ce284716a5a36061970\",\"url\":\"/oss/physical/temp/测试数据_1733298110795.xls\",\"fileName\":\"测试数据.xls\"}]', '合格', NULL), +('1864248251605676034', 'zhangru', '2024-12-04 17:59:54', NULL, NULL, 'A01', NULL, NULL, NULL, '25', NULL, NULL, NULL, '1864227118588194817', '2024-12-04 17:44:52', '2024-12-04 17:44:52', '25', '[{\"key\":\"b21622a87e9745d8831a6e89e1f0324f\",\"name\":\"测试参数1\"}]', '[{\"key\":\"5787debb7c8d4d1596d89be04ab111f6\",\"sample_model\":\"2\",\"equipment_model\":\"982183\",\"equipment_name\":\"002\",\"lifespan\":\"2024-10-23\"}]', '1', '2', '3', '[{\"key\":\"a2536225980943abbb911b4ed302d47b\",\"url\":\"/oss/physical/temp/测试数据_1733306194185.xls\",\"fileName\":\"测试数据.xls\"}]', '合格', NULL), +('1864257279761149953', 'zhangru', '2024-12-04 17:59:54', NULL, NULL, 'A01', NULL, NULL, NULL, '25', NULL, NULL, NULL, '1864257279610155010', NULL, NULL, '25', '[{\"key\":\"b21622a87e9745d8831a6e89e1f0324f\",\"name\":\"测试参数1\"}]', '[{\"key\":\"5787debb7c8d4d1596d89be04ab111f6\",\"sample_model\":\"2\",\"equipment_model\":\"982183\",\"equipment_name\":\"002\",\"lifespan\":\"2024-10-23\"}]', '1', '2', '3', '[{\"key\":\"a2536225980943abbb911b4ed302d47b\",\"url\":\"/oss/physical/temp/测试数据_1733306194185.xls\",\"fileName\":\"测试数据.xls\"}]', '合格', NULL), +('1864257450821644290', 'zhangru', '2024-12-04 17:59:54', NULL, NULL, 'A01', NULL, NULL, NULL, '25', NULL, NULL, NULL, '1864257450679037954', NULL, NULL, '25', '[{\"key\":\"b21622a87e9745d8831a6e89e1f0324f\",\"name\":\"测试参数1\"}]', '[{\"key\":\"5787debb7c8d4d1596d89be04ab111f6\",\"sample_model\":\"2\",\"equipment_model\":\"982183\",\"equipment_name\":\"002\",\"lifespan\":\"2024-10-23\"}]', '1', '2', '3', '[{\"key\":\"a2536225980943abbb911b4ed302d47b\",\"url\":\"/oss/physical/temp/测试数据_1733306194185.xls\",\"fileName\":\"测试数据.xls\"}]', '合格', NULL), +('1864285135509745665', 'zhangru', '2024-12-04 20:26:28', NULL, NULL, 'A01', NULL, NULL, NULL, '25', NULL, NULL, NULL, '1864210739042545665', '2024-12-04 20:06:52', '2024-12-04 20:06:52', '25', '[{\"key\":\"7b97a71b2c1e4b549dc48ef1d57f2bfc\",\"name\":\"测试参数1\"}]', '[{\"key\":\"93be00050e674e9884c60aa0b4380474\",\"sample_model\":\"1\",\"equipment_model\":\"0007\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '2', '3', '[{\"key\":\"90dfcf9efdc546479f079c3151daf711\",\"url\":\"/oss/physical/temp/测试数据_1733315171092.xls\",\"fileName\":\"测试数据.xls\"}]', '合格', NULL), +('1864556296232607746', 'admin', '2024-12-05 14:23:57', NULL, NULL, 'A01', NULL, NULL, NULL, '19', '1', '1', NULL, '1864257279610155010', '2024-12-05 14:22:19', '2024-12-05 14:22:19', '22', '[{\"key\":\"d96da18b6e4a47e3ab341daebf2d1357\",\"name\":\"测试参数1\"},{\"key\":\"60d2d9ce53164dbe82642a9130eada29\",\"name\":\"123\"}]', '[{\"key\":\"9af798fe6830459faef1239609f1d5f9\",\"sample_model\":\"2\",\"equipment_model\":\"0007\",\"equipment_name\":\"设备001\",\"lifespan\":\"2024-10-23\"}]', '1', '1', '1', '[{\"key\":\"4c027004189b4b808726364cd2687c11\",\"url\":\"上传失败,存在非法文件类型:sql\",\"fileName\":\"11.csv\"}]', '合格', NULL); INSERT INTO `experiment_user` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `experiment_id`, `user_id`, `type`) VALUES ('1858789172986335233', 'caoxiang', '2024-11-19 16:27:28', NULL, NULL, 'A01', '1858789172747259906', '1714471285016895490', 'OPERATOR'), @@ -3172,12 +3187,13 @@ INSERT INTO `experiment_user` (`id`, `create_by`, `create_time`, `update_by`, `u ('1863903217849036801', 'caoxiang', '2024-12-03 19:08:51', NULL, NULL, 'A01', '1863898586251096065', '1860866034718285825', 'OPERATOR'), ('1864108563930640386', 'zhangru', '2024-12-04 08:44:50', NULL, NULL, 'A01', '1864108428710473730', '1860866034718285825', 'OPERATOR'), ('1864210739084488706', 'zhangru', '2024-12-04 15:30:50', NULL, NULL, 'A01', '1864210739042545665', '1860866034718285825', 'OPERATOR'), -('1864500780096647170', 'admin', '2024-12-05 10:43:21', NULL, NULL, 'A01', '1864227118588194817', '1860866034718285825', 'OPERATOR'); +('1864546556257607682', 'admin', '2024-12-05 13:45:15', NULL, NULL, 'A01', '1864227118588194817', '1860866034718285825', 'OPERATOR'), +('1864546773841321986', 'admin', '2024-12-05 13:46:07', NULL, NULL, 'A01', '1864110227236417538', '1842788885145956354', 'OPERATOR'); -INSERT INTO `irradiation_standards` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `name`, `code`, `environmental_temperature`, `anneal_times`, `radiation_source`, `condition_f`, `condition_d`, `condition_e`, `condition_b`, `condition_c`, `condition_a`) VALUES -('1836655559863545858', 'admin', '2024-09-19 14:36:24', 'zhangru', '2024-12-04 20:33:23', 'A01', '213', '123', '2-20', '213', '123', NULL, NULL, NULL, NULL, NULL, NULL), -('1836656549094338561', 'admin', '2024-09-19 06:40:19', 'zhangru', '2024-12-04 20:33:31', 'A01', '123', '213', '20-80', '32131', '2024-09-19', NULL, NULL, NULL, NULL, NULL, NULL), -('1850187727239749634', 'caoxiang', '2024-10-26 22:48:24', 'zhangru', '2024-12-04 20:33:43', NULL, '222', '111', '1-10', '123', '213123', '1231', '3123', '321', '3123', '123', '312'); +INSERT INTO `irradiation_standards` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `name`, `code`, `environmental_temperature`, `anneal_times`, `radiation_source`, `condition_f`, `condition_d`, `condition_e`, `condition_b`, `condition_c`, `condition_a`, `accelerated_anneal_temperature`, `room_anneal_temperature`) VALUES +('1836655559863545858', 'admin', '2024-09-19 14:36:24', 'zhangru', '2024-12-04 20:33:23', 'A01', '213', '123', '2-20', '213', '123', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), +('1836656549094338561', 'admin', '2024-09-19 06:40:19', 'zhangru', '2024-12-04 20:33:31', 'A01', '123', '213', '20-80', '32131', '2024-09-19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), +('1850187727239749634', 'caoxiang', '2024-10-26 22:48:24', 'zhangru', '2024-12-04 20:33:43', NULL, '222', '111', '1-10', '123', '213123', '1231', '3123', '321', '3123', '123', '312', NULL, NULL); INSERT INTO `nasa_data_record` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `device_type`, `device_name`, `device_mode`, `device_function`, `device_batch`, `manufacturer`, `experiment_date`, `data_source`, `experiment_user`, `total_count_nasa`, `file_list`, `origin_data`, `total_count_lhs`) VALUES ('0013ec8df9dd3b63af59332f5e77d6ee', 'Crawler', '2024-11-13 12:07:07', NULL, '2024-11-14 16:57:18', NULL, '90 nm chalcogenide PCM', 'PCM A33', 'PCM A33', 'Nonvolatile Memory', NULL, 'Numonyx', 'TAMU10MAY;2009NOV', 'NASA', NULL, '1', '[{\'T052110_PCMA33.pdf\': \'/oss/physical/NASA/0013ec8df9dd3b63af59332f5e77d6ee/T052110_PCMA33.pdf\'}, {\'nsrec2011_W6_SEE.pdf\': \'/oss/physical/NASA/0013ec8df9dd3b63af59332f5e77d6ee/nsrec2011_W6_SEE.pdf\'}, {\'data.csv\': \'/oss/physical/NASA/0013ec8df9dd3b63af59332f5e77d6ee/data.csv\'}]', 'PCM A33,Nonvolatile Memory,Numonyx,TAMU10MAY;2009NOV,T052110_PCMA33.pdf;nsrec2011_W6_SEE.pdf;VdC09NOV_PCMA33.pdf,TID; SEE; SEL,90 nm chalcogenide PCM', '2'), @@ -5757,9 +5773,9 @@ INSERT INTO `onl_cgform_enhance_sql` (`ID`, `BUTTON_CODE`, `CGB_SQL`, `CGB_SQL_N INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_field_txt`, `db_field_name_old`, `db_is_key`, `db_is_null`, `db_is_persist`, `db_type`, `db_length`, `db_point_length`, `db_default_val`, `dict_field`, `dict_table`, `dict_text`, `field_show_type`, `field_href`, `field_length`, `field_valid_type`, `field_must_input`, `field_extend_json`, `field_default_value`, `is_query`, `is_show_form`, `is_show_list`, `is_read_only`, `query_mode`, `main_table`, `main_field`, `order_num`, `update_by`, `update_time`, `create_time`, `create_by`, `converter`, `query_def_val`, `query_dict_text`, `query_dict_field`, `query_dict_table`, `query_show_type`, `query_config_flag`, `query_valid_type`, `query_must_input`, `sort_flag`) VALUES ('0021c969dc23a9150d6f70a13b52e73e', '402860816aa5921f016aa5921f480000', 'begin_date', '开始时间', 'begin_date', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 4, 'admin', '2019-05-11 15:31:54', '2019-05-11 14:26:19', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('004d82f5b236a42fa3f1e08ccac22f37', '1857642795707228161', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 5, 'admin', '2024-11-16 12:36:04', '2024-11-16 12:32:11', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('01110bae44b756464af3e1ef7fe323ec', '1829347928200749057', 'condition_d', '条件D', NULL, 0, 1, 1, 'string', 512, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 14, NULL, NULL, '2024-11-14 15:31:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('01110bae44b756464af3e1ef7fe323ec', '1829347928200749057', 'condition_d', '条件D', NULL, 0, 1, 1, 'string', 512, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 14, 'admin', '2024-12-05 14:36:15', '2024-11-14 15:31:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('016421dc5d983917d6f40700a7551356', '1857642795707228161', 'experiment_id', '实验ID', 'experiment_id', 0, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '1', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 6, 'admin', '2024-11-16 12:36:04', '2024-11-16 12:32:11', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('017c280edf4fa07e0ff173cafd532ff1', '1846024836387282946', 'environmental_humidity', '环境湿度', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 16, NULL, NULL, '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('017c280edf4fa07e0ff173cafd532ff1', '1846024836387282946', 'environmental_humidity', '环境湿度', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 16, 'admin', '2024-12-05 14:21:26', '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('020c1622c3df0aef30185f57874f6959', '79091e8277c744158530321513119c68', 'bpm_status', '流程状态', NULL, 0, 1, 1, 'string', 32, 0, '1', 'bpm_status', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 1, 0, 'single', '', '', 8, 'admin', '2019-05-11 15:29:47', '2019-05-11 15:29:26', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('0242e2a3c0db86e337da11dfc1dbcf98', '1853426743397425154', 'device_mode', '器件型号', 'name', 0, 1, 1, 'string', 1024, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 8, 'admin', '2024-11-14 15:25:22', '2024-11-04 21:19:05', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('0283ed87ac022dd02d7ec470861f7006', 'ea0a86437fd843c68fb47c3e0fc537c9', 'principal', '委托方', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 8, NULL, NULL, '2024-09-19 15:08:35', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -5789,10 +5805,10 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('08f002095da7c1886c86648fcec38ca9', '56efb74326e74064b60933f6f8af30ea', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 6, 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('08f0dd5c8b9a26cec5cf9a2dd8fb7446', '1864484528728928257', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, 'admin', '2024-12-05 09:41:08', '2024-12-05 09:38:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('09450359eb90b40d224ec43588a62f9e', '402860816bff91c0016bff91c0cb0000', 'user_id', '用户ID', 'user_id', 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 3, 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('09b69c8cc1bada0b944e772b81826ffa', '8b88392f44b64b8e92ddccac596247f0', 'attachment', '附件', NULL, 0, 1, 1, 'string', 2048, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 9, 'admin', '2024-09-18 19:21:22', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('09b69c8cc1bada0b944e772b81826ffa', '8b88392f44b64b8e92ddccac596247f0', 'attachment', '附件', NULL, 0, 1, 1, 'string', 2048, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 9, 'admin', '2024-12-05 14:13:20', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('0a1208184216d9f5defa41d08040a8fd', 'a2ca0c7297a8491ca849fc1a06c9efbf', 'sex', 'sex', NULL, 0, 1, 1, 'string', 32, 0, '', 'sex', '', '', 'list', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2021-01-24 14:39:35', '2021-01-24 14:38:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('0a4cdcb7e54f614ab952024f6c72bb6d', 'beee191324fd40c1afec4fda18bd9d47', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2019-04-13 13:41:13', '2019-04-13 13:40:56', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('0aa7e6484c99e29c6c0b9c0cbc54c345', '8b88392f44b64b8e92ddccac596247f0', 'name', '标准名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 6, 'admin', '2024-09-18 19:21:22', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('0aa7e6484c99e29c6c0b9c0cbc54c345', '8b88392f44b64b8e92ddccac596247f0', 'name', '标准名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 6, 'admin', '2024-12-05 14:13:20', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('0aad6fa0bf0965a6be1df8aa6005afb4', 'feea98637c2144caae7c5d56a815a245', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 6, NULL, NULL, '2021-10-27 10:24:24', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('0acfc27e493c204f72d42b6dc00a2ded', '53a3e82b54b946c2b904f605875a275c', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2022-10-25 11:10:48', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('0adc06d9b497684bcbb5a781e044517c', '1acb6f81a1d9439da6cc4e868617b565', 'supplier', '供应商', NULL, 0, 1, 1, 'string', 32, 0, '', 'air_china_ supplier', '', '', 'list', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 15, 'admin', '2019-06-10 14:47:14', '2019-04-24 16:52:00', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -5803,14 +5819,16 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('0ba1bf74e2a6a94a7a63010ec7230706', '402860816bff91c0016bffa220a9000b', 'update_time', '更新时间', 'update_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 42, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('0bd10d416252bdc6b169056d2a1a4a68', '402880e5721355dd01721355dd390000', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, NULL, NULL, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('0c34ebfe2e2a619d42db13f93d2a2d40', 'b81de38db24047b497d476516f8a0865', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, NULL, NULL, '2020-02-24 14:56:08', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('0c4e31200f41027bb97d9e84039ca74e', '97283326c7384df28959e8e9a9f5013f', 'sample_model', '样品型号', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 12, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('0c4e31200f41027bb97d9e84039ca74e', '97283326c7384df28959e8e9a9f5013f', 'sample_model', '样品型号', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 12, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('0cb71b9685a79c5473d84f1fbd9c0666', '1864545872732856322', 'sample_image', '图片', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 12, 'admin', '2024-12-05 13:44:14', '2024-12-05 13:42:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('0cba94f0497d4d3d829fc573f58eff9f', '402860816bff91c0016bffa220a9000b', 'graduation_time', '毕业时间', 'graduation_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 16, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), +('0cec856048dfe053d4899d41fd7f6c33', '1864545872732856322', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 5, 'admin', '2024-12-05 13:44:13', '2024-12-05 13:42:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('0d00c51a4ddad2598a587fadc968a8b2', '402860816bff91c0016bff91cfea0004', 'sys_org_code', '组织机构编码', 'sys_org_code', 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 13, 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('0d0675d28c7ce9f59539ce10bd2357ee', '1864485221946716162', 'load_capacity', '负载', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 11, 'admin', '2024-12-05 09:44:10', '2024-12-05 09:41:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('0ddd0c0afc967a9ab6050401ca62a4be', 'e67d26b610dd414c884c4dbb24e71ce3', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2019-04-24 11:03:32', '2019-04-24 11:02:57', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('0de87e18009ae2f43e055b3a2095435f', '1846024836387282946', 'measurement_rate', '计量率', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 7, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('0de87e18009ae2f43e055b3a2095435f', '1846024836387282946', 'measurement_rate', '计量率', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 7, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('0e157503e648653836a602f5bbad4e83', '402881e6760269a201760269a2af0000', 'files', '文件', NULL, 0, 1, 1, 'string', 1000, 0, '', '', '', '', 'file', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 15, NULL, NULL, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('0e3782af9f46e6eeba024c6fa414d0ba', '97283326c7384df28959e8e9a9f5013f', 'deviation_condition', '偏置条件', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 18, 'admin', '2024-11-13 23:58:40', '2024-10-12 23:59:31', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('0e3782af9f46e6eeba024c6fa414d0ba', '97283326c7384df28959e8e9a9f5013f', 'deviation_condition', '偏置条件', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 18, 'admin', '2024-12-05 14:50:53', '2024-10-12 23:59:31', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('0e5fb96c3f5a37c758eb7f5d1322694f', '402880e5721355dd01721355dd390000', 'good_name', '商品名字', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 7, NULL, NULL, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('0f0121bbe4418f79e442abacc8a8dc44', 'c452d7508f38476da0c80311b1e1d329', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2024-11-21 10:33:05', '2024-08-22 17:02:38', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('0f5b0aef75640b7ee843a4ff27f6dcb0', '3b6eab3feffc4cd6bcf28cf01decebd7', 'management_no', '管理编号', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, 'admin', '2024-12-05 11:43:17', '2024-08-30 10:25:23', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -5831,14 +5849,15 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('1468346542d26c144b46570b762518a9', '722c27169ad44f689c5885ca586b248f', 'title', '文档标题', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2024-11-13 17:24:13', '2024-08-21 16:19:14', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('14b7e6161d1f908e13026439af302a66', '3b5e18da618247539481816995b6bf9f', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('14ec4c83c29966ab42b6b718c5a3e774', '7ea60a25fa27470e9080d6a921aabbd1', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, NULL, NULL, '2019-04-17 00:22:21', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('154801c3cb2f2f7953ec8851394738cf', 'ca19150a847245dab3d070aaf2c82586', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2024-11-16 20:55:12', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('154801c3cb2f2f7953ec8851394738cf', 'ca19150a847245dab3d070aaf2c82586', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2024-12-05 14:40:09', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('154ba4ca5328866010e042086ffc2b81', '56efb74326e74064b60933f6f8af30ea', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 1, 'single', '', '', 1, 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('15768c8d3a9b43069678c017e1fa1d15', '5517e93b148a42a7b82d5f3f94542dcf', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, NULL, NULL, '2022-07-19 19:36:53', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('15e59401807d22b90130cbfebc156873', '1864545872732856322', 'measurement_validity', '计量有效期', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 13, NULL, NULL, '2024-12-05 13:44:14', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('16363d0bc125125e395772278d0cf22e', '4b556f0168f64976a3d20bfb932bc798', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, NULL, NULL, '2019-04-12 23:38:28', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('1651ba6fbd1ebf0c62441b4c24a9e93a', '8b88392f44b64b8e92ddccac596247f0', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2024-09-18 19:21:22', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('1651ba6fbd1ebf0c62441b4c24a9e93a', '8b88392f44b64b8e92ddccac596247f0', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2024-12-05 14:13:20', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('168426cf1016cf0b99705ae1c4c8591e', '402880e5721355dd01721355dd390000', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 1, 'single', NULL, NULL, 1, NULL, NULL, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('168baeda954d9e5f6a71e67a99b36e20', '1848200093202231297', 'exception_record', '异常记录', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 11, 'admin', '2024-10-23 17:44:03', '2024-10-21 11:10:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('169098737e406b27fd47bfa60e62fc7e', '1846024836387282946', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('169098737e406b27fd47bfa60e62fc7e', '1846024836387282946', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('16918ac159cb6313fec1dea7ac4bd0a0', '402880eb71d52dc30171d52dc3a10000', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 10, NULL, NULL, '2020-05-02 19:37:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('17327a9704c421ea2e4c290609152c6f', '360542df1f4146ac9dc29659dbd69703', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, NULL, NULL, '2024-08-22 16:59:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('179c290e383009810fb738f07bd5af8d', '402860816bff91c0016bff91d2810005', 'id', 'id', 'id', 1, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'group', '', '', 1, 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -5861,28 +5880,29 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('1b6c7b95028bed9ff656d65557dd2bdf', '402860816bff91c0016bffa220a9000b', 'user_id', '用户id', 'user_id', 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 3, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('1c4d25a12388c80d397bb4f4664fe4e6', '4b556f0168f64976a3d20bfb932bc798', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, NULL, NULL, '2019-04-12 23:38:28', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('1c6d7ce9afba132b82b2156094864716', '722c27169ad44f689c5885ca586b248f', 'type', '类型DOCUMENT/FOLDER', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 10, 'admin', '2024-11-13 17:24:13', '2024-11-04 10:41:19', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('1cc22644699c341490405d43ec84a31a', '8b88392f44b64b8e92ddccac596247f0', 'content', '内容', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 8, 'admin', '2024-09-18 19:21:22', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('1cc22644699c341490405d43ec84a31a', '8b88392f44b64b8e92ddccac596247f0', 'content', '内容', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 8, 'admin', '2024-12-05 14:13:20', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('1cfe967bb457cbaa6e041e45d019b583', '402860816bff91c0016bff91c7010001', 'update_time', '更新时间', 'update_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 10, 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('1d0037eba10efd76be45150479399a7e', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, NULL, NULL, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('1d712db19506ee40b2c1ef5a611baf88', '53a3e82b54b946c2b904f605875a275c', 'name', '商品名字', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2022-10-25 11:10:48', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('1db847b0dff4a5ffa109f2c23eba4eb9', 'ca19150a847245dab3d070aaf2c82586', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, 'admin', '2024-11-16 20:55:12', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('1db847b0dff4a5ffa109f2c23eba4eb9', 'ca19150a847245dab3d070aaf2c82586', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, 'admin', '2024-12-05 14:40:09', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('1e2cb38bf39a0e54e93d48890fa4bea0', '1864484528728928257', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', NULL, NULL, 0, 'admin', '2024-12-05 09:41:08', '2024-12-05 09:38:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('1e37ae77c0d406d4ff3c5442ec63cd1f', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, NULL, NULL, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('1e3987a0fdf31a3ea3b4e054255a345e', '8a31140f10a9417495ff2fff77deab55', 'group_code', '集团编码', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 10, NULL, NULL, '2024-09-11 16:44:20', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('1e3d8cfbf12155559666a23ee2c6c5ca', 'e5464aa8fa7b47c580e91593cf9b46dc', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2019-04-24 17:09:49', '2019-04-24 11:05:10', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('1ec30f297497957de90b1434ab021bca', '97283326c7384df28959e8e9a9f5013f', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('1ec30f297497957de90b1434ab021bca', '97283326c7384df28959e8e9a9f5013f', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('1ed46fdeb289bd7805c9b83332ccd3b4', '402860816bff91c0016bff91d2810005', 'relation', '关系', 'relation', 0, 1, 1, 'string', 20, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 4, 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('1eda61dece35abd76b8d8d49e1b139b8', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'content', '描述', NULL, 0, 1, 1, 'string', 200, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, NULL, NULL, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('1ee829c9c9fb099b7189b31d389c7378', '497144e626e84545b56f151c9f4d6e9e', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, NULL, NULL, '2024-08-30 10:42:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('1f0580549a453c7712c6ace4c5a3e6d3', '1846024836387282946', 'radiation_source', ' 辐照源', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 6, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('1f0580549a453c7712c6ace4c5a3e6d3', '1846024836387282946', 'radiation_source', ' 辐照源', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 6, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('1f0bd9a2a7700344e4e13ad8ddc55d04', '1864485221946716162', 'experiment_id', '试验ID', 'experiment_id', 0, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '1', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 6, 'admin', '2024-12-05 09:44:10', '2024-12-05 09:41:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('1f0c6d33b79713fe79fb30373c81f6f7', '758334cb1e7445e2822b60e807aec4a3', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, NULL, NULL, '2019-10-18 18:02:09', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('1f2d36e63f952d07b05499d51766288b', '1829347928200749057', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', NULL, NULL, 0, 'admin', '2024-11-14 15:31:47', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('1f2d36e63f952d07b05499d51766288b', '1829347928200749057', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', NULL, NULL, 0, 'admin', '2024-12-05 14:36:15', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('1fa7fdb2f5537d8c5d7416ed07767339', '8a31140f10a9417495ff2fff77deab55', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2024-09-11 16:44:20', '2024-08-30 10:18:49', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('20525b37800e1301f8005b7aac22c6b2', '97283326c7384df28959e8e9a9f5013f', 'experiment_no', '试验编号', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:55:44', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('20525b37800e1301f8005b7aac22c6b2', '97283326c7384df28959e8e9a9f5013f', 'experiment_no', '试验编号', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:55:44', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('20dc56033fa1c3cea980669b1702373e', '1846024929844764674', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', NULL, NULL, 0, 'admin', '2024-12-05 11:23:14', '2024-10-15 11:06:56', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('20de3043c5435a6463eacb7e6571cb45', '1853426999698759682', 'manufacturer', '生产厂家', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 9, 'admin', '2024-11-04 21:26:28', '2024-11-04 21:20:07', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('20efb2cb6a404921b0b5a70a7e46f50e', '2bed5edf282d49fb9281145944d924a1', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, NULL, NULL, '2024-09-18 20:45:37', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('20f1bb069881769e0a5aa1dd878ef84a', '1864545872732856322', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', NULL, NULL, 0, 'admin', '2024-12-05 13:44:13', '2024-12-05 13:42:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('20fac48e854f2885c9eb9a8e22f78f67', 'ea0a86437fd843c68fb47c3e0fc537c9', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2024-09-19 15:08:35', '2024-08-30 10:31:36', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('2113a4ec7b88b4820dcbbdf96e46bbb7', 'fbc35f067da94a70adb622ddba259352', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, NULL, NULL, '2019-07-03 19:44:23', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('2150e48b2cb6072d2d8ecd79a7daf7cc', '402860816bff91c0016bff91ca7e0002', 'create_time', '创建时间', 'create_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 10, 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -5893,8 +5913,9 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('2357321731dfa44f653794eb9898604a', '1864324542325420034', 'sample_batch', '样品批次', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, 'admin', '2024-12-05 11:03:29', '2024-12-05 00:06:52', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('23f42061ed218bdbc1262913c071e1cd', 'e5464aa8fa7b47c580e91593cf9b46dc', 'iz_valid', '启动状态', NULL, 0, 1, 1, 'int', 2, 0, '', 'air_china_valid', '', '', 'list', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 12, 'admin', '2019-04-24 17:09:49', '2019-04-24 14:09:06', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('242d1c9f4c6df82975563dedc40fe100', '497144e626e84545b56f151c9f4d6e9e', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, NULL, NULL, '2024-08-30 10:42:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('256b7b171a9cb19ceef4310b17723552', '97283326c7384df28959e8e9a9f5013f', 'files', '附件', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 21, NULL, NULL, '2024-12-05 14:50:53', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('25d91ca4cdc3919c7557d23caf7ed6de', 'f9fb8bee1a64472889d077c757b9acc7', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2021-08-17 13:58:15', '2021-08-17 13:57:48', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), -('25f6377a1947e8e32ac28f672d9a245b', 'ca19150a847245dab3d070aaf2c82586', 'status', '状态', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 13, 'admin', '2024-11-16 20:55:12', '2024-10-23 23:02:44', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('25f6377a1947e8e32ac28f672d9a245b', 'ca19150a847245dab3d070aaf2c82586', 'status', '状态', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 13, 'admin', '2024-12-05 14:40:09', '2024-10-23 23:02:44', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('260cbdb1c494f41539b71748c56bb148', '2c92808393927efd0193927efd150000', 'sequence_year', '序列年', NULL, 0, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '1', '', '', 0, 1, 1, 0, 'single', '', '', 7, NULL, NULL, '2024-12-05 00:26:56', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('265702edb8872e322fe72d3640e34ac5', '402860816bff91c0016bff91cfea0004', 'from_time', '开始日期', 'from_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 3, 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('26be1b96f3c5d1f25254cc8ab60a268a', '5517e93b148a42a7b82d5f3f94542dcf', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, NULL, NULL, '2022-07-19 19:36:53', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -5910,13 +5931,13 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('28900c8e76dd0e77193cbd85b5bc6af8', '402881e6760269a201760269a2af0000', 'remakr', 'markdown', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'markdown', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 16, NULL, NULL, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('28ab929fd8535396feee2995ad6a2dd5', '553a4172fde446419cb602dc70f9ee67', 'zdys', '自定义树', NULL, 0, 1, 1, 'string', 255, 0, NULL, '0', 'sys_category', 'id,pid,name,has_child', 'sel_tree', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 32, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('28b4e0443ae1e805bb5c0dbf8bd525ba', '1857015207720738817', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-11-14 19:48:08', '2024-11-14 18:58:22', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('28e87ba6d1104cdff129e0284537f47d', '1846024836387282946', 'radiation_standard', '辐照标准', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 8, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('28e87ba6d1104cdff129e0284537f47d', '1846024836387282946', 'radiation_standard', '辐照标准', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 8, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('293f6bc9a0f557a32bbdf45669404f35', 'feea98637c2144caae7c5d56a815a245', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 1, 'single', '', '', 1, NULL, NULL, '2021-10-27 10:24:24', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('299f9e23d56a0831a6a4ab46a361239d', '2c92808393927efd0193927efd150000', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, NULL, NULL, '2024-12-05 00:26:56', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('29e4abea55d9fa7dbbd0c8dbbb2b3756', '402860816bff91c0016bff91cda80003', 'update_time', '更新时间', 'update_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 12, 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('2a3ec148c7b4ff5a4e89791651b59003', 'ea0a86437fd843c68fb47c3e0fc537c9', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2024-09-19 15:08:35', '2024-08-30 10:31:36', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('2a44ff25975f68ea3ca439fce05f2b39', '722c27169ad44f689c5885ca586b248f', 'file_list', '附件', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 11, NULL, NULL, '2024-11-13 17:24:13', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('2a8ade160f73297c5a68e089992c86b6', '1829347928200749057', 'radiation_source', '辐射源', 'radiation_source', 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 10, 'admin', '2024-11-14 15:31:47', '2024-09-19 14:38:52', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('2a8ade160f73297c5a68e089992c86b6', '1829347928200749057', 'radiation_source', '辐射源', 'radiation_source', 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 10, 'admin', '2024-12-05 14:36:15', '2024-09-19 14:38:52', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('2a9c980f676858b6a39abc4112e1021e', '1853426999698759682', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, 'admin', '2024-11-04 21:26:28', '2024-11-04 21:20:07', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('2ab6a940f700841b908cb74daacf1545', 'fafa347903804e89acc7c63e4ab3244c', 'batch', '批次', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 9, NULL, NULL, '2024-10-09 20:52:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('2aef31179964d0a5a945df7bddff00ae', '53a3e82b54b946c2b904f605875a275c', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2022-10-25 11:10:48', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), @@ -5928,23 +5949,25 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('2e0374878fb3d5be3b0b3f868a97fb59', '09fd28e4b7184c1a9668496a5c496450', 'sex', '客户性别', NULL, 0, 1, 1, 'string', 1, 0, '', 'sex', '', '', 'list', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2022-05-07 19:05:56', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('2e5275b6407e1b4265af8519077fa4a5', 'd3ae1c692b9640e0a091f8c46e17bb01', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 6, NULL, NULL, '2019-07-24 14:47:30', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('2e66b9db37648389e0846e2204111732', '73162c3b8161413e8ecdca7eb288d0c9', 'has_child', '是否有子节点', NULL, 0, 1, 1, 'string', 3, 0, '', 'valid_status', '', '', 'list', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 10, 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('2e9ecce88f514b950428cde1c6bf0870', '97283326c7384df28959e8e9a9f5013f', 'deviation_equipment', '加偏设备', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 19, 'admin', '2024-11-13 23:58:40', '2024-10-12 23:59:31', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('2e9ecce88f514b950428cde1c6bf0870', '97283326c7384df28959e8e9a9f5013f', 'deviation_equipment', '加偏设备', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 19, 'admin', '2024-12-05 14:50:53', '2024-10-12 23:59:31', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('2ee58d8e4844dfe1fa6b1b841ae0b312', '402860816bff91c0016bff91d2810005', 'politically_status', '政治面貌', 'politically_status', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 7, 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('2f111722eb3a994450e67e3211fd69a8', '402860816bff91c0016bff91ca7e0002', 'id', 'id', 'id', 1, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'group', '', '', 1, 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('2f13bd36aadfe10fb79c57d727279981', 'feea98637c2144caae7c5d56a815a245', 'aaa', 'aa', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 7, NULL, NULL, '2021-10-27 10:24:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('30143cc3de69c413828f9fba20662026', '402860816bff91c0016bffa220a9000b', 'healthy', '健康状况', 'healthy', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 12, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), +('304f81fed4bc1c4bd61032a17a2f5901', '1864545872732856322', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 4, 'admin', '2024-12-05 13:44:13', '2024-12-05 13:42:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('306e3fb9c87ca6442cefbd61f498f1f7', '402881e6760269a201760269a2af0000', 'dep_sel', '选择部门', NULL, 0, 1, 1, 'string', 200, 0, '', '', '', '', 'sel_depart', '', 120, NULL, '0', '', '#{sysOrgCode}', 0, 1, 1, 0, 'single', NULL, NULL, 19, NULL, NULL, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('30f8c25a7f785acecb6147867fde4379', 'fbcd53c12cb642e8985bf3ea4cd0e864', 'document_title', '文档标题', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, NULL, NULL, '2024-11-14 18:03:56', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('31b14c9181e23fef38dc82df6114b28a', '8b88392f44b64b8e92ddccac596247f0', 'temperature_requirements', '温度要求', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 11, NULL, NULL, '2024-12-05 14:13:20', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('31fd90306c3942f09cb79deabbf2f541', '402860816bff91c0016bff91d2810005', 'employee_id', '员工ID', 'employee_id', 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', 'oa_employee_info', 'id', 2, 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('3243191d86c48c23188eb109c14479f5', '2c92808393927efd0193927efd150000', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, NULL, NULL, '2024-12-05 00:26:56', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('3293ebb543826cb985a6314c6a686347', '1853426743397425154', 'device_batch', '器件批次', 'file_id', 0, 1, 1, 'string', 1024, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 10, 'admin', '2024-11-14 15:25:22', '2024-11-04 21:19:05', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('329be4b040590f198f702c01e5319599', '8a31140f10a9417495ff2fff77deab55', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2024-09-11 16:44:20', '2024-08-30 10:18:49', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('32f92d1b4dd9e3088ab17e7872fbfea9', 'ca19150a847245dab3d070aaf2c82586', 'sample_info', '样品信息', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 7, 'admin', '2024-11-16 20:55:12', '2024-10-23 22:54:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('32f92d1b4dd9e3088ab17e7872fbfea9', 'ca19150a847245dab3d070aaf2c82586', 'sample_info', '样品信息', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 7, 'admin', '2024-12-05 14:40:09', '2024-10-23 22:54:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('32fbb6be2b7b549123c94d911526184c', '2c92808393927efd0193927efd150000', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 4, NULL, NULL, '2024-12-05 00:26:56', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('32fcad4410841c84516b500cdde2c8e2', '8b88392f44b64b8e92ddccac596247f0', 'time', '数据创建时间', NULL, 0, 1, 1, 'Date', 0, 0, '', '', '', '', 'date', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 10, NULL, NULL, '2024-09-18 19:21:22', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('32fcad4410841c84516b500cdde2c8e2', '8b88392f44b64b8e92ddccac596247f0', 'time', '数据创建时间', NULL, 0, 1, 1, 'Date', 0, 0, '', '', '', '', 'date', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 10, 'admin', '2024-12-05 14:13:20', '2024-09-18 19:21:22', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('333a312373d0c81a417b4e72732f1e7b', '2bed5edf282d49fb9281145944d924a1', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, NULL, NULL, '2024-09-18 20:45:37', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('336495117e3a31351fed6963b950dddb', '402860816bff91c0016bffa220a9000b', 'inside_transfer', '内部工作调动情况', 'inside_transfer', 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 37, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('33cf0d0716f4a9483b7cf1dc1584ae8f', '1846024836387282946', 'test_data', '测试数据(json 大字段)', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 22, NULL, NULL, '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('33cf0d0716f4a9483b7cf1dc1584ae8f', '1846024836387282946', 'test_data', '测试数据(json 大字段)', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 22, 'admin', '2024-12-05 14:21:26', '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('34138092d743d4232341a920efd2699e', '402880eb71d52dc30171d52dc3a10000', 'name', '名称', NULL, 0, 1, 1, 'string', 200, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '#{sysUserName}', 0, 1, 1, 0, 'single', NULL, NULL, 3, NULL, NULL, '2020-05-02 19:37:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('34318e726bc9890a023b56bde36a18a0', '1848201478455013377', 'device_function', '器件功能', 'file_name', 0, 1, 1, 'string', 2048, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 9, 'admin', '2024-10-23 16:53:48', '2024-10-21 11:15:45', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('345c8b48e1e128e77c4c6e2b36512804', '402860816aa5921f016aa5dedcb90009', 'create_by', '创建人', 'create_by', 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'group', '', '', 2, 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -5958,11 +5981,11 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('35ca1c8aa1501bc8a79c880928841f18', '402860816aa5921f016aa5921f480000', 'update_by', '修改人id', 'update_by', 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'group', '', '', 11, 'admin', '2019-05-11 15:31:55', '2019-05-11 14:26:19', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('35fcf817e4feb2cc6fff66cf953bfe1b', '1857642795707228161', 'difficulty_score', '难度分', NULL, 0, 1, 1, 'int', 10, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 11, NULL, NULL, '2024-11-16 12:36:04', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('3635793767371c6db9f76b4b79f9d321', '402860816bff91c0016bff91d8830007', 'create_time', '创建时间', 'create_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 11, 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('365dc0c339539b037109379a251388f0', '1829347928200749057', 'name', '标准名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', NULL, NULL, 6, 'admin', '2024-11-14 15:31:47', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('365dc0c339539b037109379a251388f0', '1829347928200749057', 'name', '标准名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', NULL, NULL, 6, 'admin', '2024-12-05 14:36:15', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('36de6b200a489f1fedc8cdbebfa264ee', '553a4172fde446419cb602dc70f9ee67', 'bmxz', '部门选择', NULL, 0, 1, 1, 'string', 100, 0, NULL, '', '', '', 'sel_depart', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 24, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('37090f18a44c29b428162bad5d64d197', '1864485221946716162', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 5, 'admin', '2024-12-05 09:44:10', '2024-12-05 09:41:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('370a6eebc2d732eaf121fe0830d853a6', 'e5464aa8fa7b47c580e91593cf9b46dc', 'wl_code', '物料编码', NULL, 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 7, 'admin', '2019-04-24 17:09:49', '2019-04-24 11:05:10', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('37156edb28f64dff7aa2b4d5e8b59b3a', '1846024836387282946', 'environmental_temperature', '环境温度', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 9, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('37156edb28f64dff7aa2b4d5e8b59b3a', '1846024836387282946', 'environmental_temperature', '环境温度', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 9, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('375957774c7d424ce9a58d84d4c4387f', '553a4172fde446419cb602dc70f9ee67', 'yhxz', '用户选择', NULL, 0, 1, 1, 'string', 100, 0, NULL, '', '', '', 'sel_user', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 25, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('37e2548874f09ef7d08642a30bc918fa', 'fbc35f067da94a70adb622ddba259352', 'group_name', '小组名', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 7, NULL, NULL, '2019-07-03 19:44:23', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('37fc7520bdd93adfef20b50b691076df', '1864484528728928257', 'sample_type', '样品类型', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 7, 'admin', '2024-12-05 09:41:08', '2024-12-05 09:38:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -5977,7 +6000,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('3b439859f98e30e34d25e983eb22e408', '402860816bff91c0016bff91c7010001', 'award_time', '获奖时间', 'award_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 3, 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('3b61ac0b2db877f2df56b82ad99d0431', '2c92808393927efd0193927efd150000', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, NULL, NULL, '2024-12-05 00:26:56', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('3b67be0187044a0d023fc2c4c7eceabc', '402881e6760269a20176026d25650002', 'bonus_money', '奖金', 'bonus_money', 0, 1, 1, 'double', 10, 2, NULL, NULL, NULL, NULL, 'text', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'single', NULL, NULL, 6, NULL, NULL, '2020-11-26 10:41:17', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('3b85ef81691678f1dbbbd20387a290e3', '8b88392f44b64b8e92ddccac596247f0', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, 'admin', '2024-09-18 19:21:22', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('3b85ef81691678f1dbbbd20387a290e3', '8b88392f44b64b8e92ddccac596247f0', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, 'admin', '2024-12-05 14:13:20', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('3bd15366b5ca61a1043dd1b4f72f75ab', '1848201478455013377', 'experiment_date', '试验时间', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 12, 'admin', '2024-10-23 16:53:49', '2024-10-21 11:15:45', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('3bf44e68de518f3ddf72b87671d0ff90', '8994f2817b5a45d9890aa04497a317c5', 'update_by', '更新人登录名称', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 3, NULL, NULL, '2019-03-23 11:39:16', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('3c74df163f36d1ac61af6811d2569d6c', 'f9fb8bee1a64472889d077c757b9acc7', 'ds', 'ds', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 10, 'admin', '2021-08-17 13:58:15', '2021-08-17 13:57:48', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -5988,12 +6011,13 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('3cd53ec6afb7a3b5f8c032793ca821f7', '1846024929844764674', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-12-05 11:23:14', '2024-10-15 11:06:56', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('3cfd4d60c7d8409ae716a579bcb0910d', '402860816bff91c0016bff91c0cb0000', 'sys_org_code', '组织机构编码', 'sys_org_code', 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 16, 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('3d6879050f9d05395733bf564b225d87', '722c27169ad44f689c5885ca586b248f', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2024-11-13 17:24:13', '2024-08-21 16:19:14', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('3d6ce2fdc0185e6c8b17d0fdcc47b92f', '1864545872732856322', 'equipment_name', '设备名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 10, 'admin', '2024-12-05 13:44:14', '2024-12-05 13:42:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('3d72550564009a430d8d9099f47c4a05', '553a4172fde446419cb602dc70f9ee67', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 50, 0, NULL, NULL, NULL, NULL, 'text', NULL, 120, '', '0', NULL, NULL, 0, 0, 0, 0, 'single', NULL, NULL, 5, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, '0'), ('3e32f6c30c9028872388f70743c5d6a5', '402860816bff91c0016bff91c0cb0000', 'reason', '申请理由', 'reason', 0, 1, 1, 'string', 200, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 9, 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('3e418ddcaa06f040e3e9285d1380bce8', 'c256ecba74534bb080ee00d3d00492e0', 'experiment_id', '试验ID', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, NULL, NULL, '2024-08-30 11:07:23', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('3e70d1c516c3533c6698300665c669e1', '402860816bff91c0016bff91c0cb0000', 'id', 'id', 'id', 1, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'group', '', '', 1, 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:31', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('3ea59d86f422d076b062f55e6c7f46bf', '1829347928200749057', 'condition_f', '条件F', NULL, 0, 1, 1, 'string', 512, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 16, NULL, NULL, '2024-11-14 15:31:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('3edde7672e9f832cf00be18abb818bd8', '1846024836387282946', 'test_start_time', '测试开始时间', 'radiation_start_time', 0, 1, 1, 'Datetime', 32, 0, '', '', '', '', 'datetime', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 14, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:22:09', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('3ea59d86f422d076b062f55e6c7f46bf', '1829347928200749057', 'condition_f', '条件F', NULL, 0, 1, 1, 'string', 512, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 16, 'admin', '2024-12-05 14:36:15', '2024-11-14 15:31:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('3edde7672e9f832cf00be18abb818bd8', '1846024836387282946', 'test_start_time', '测试开始时间', 'radiation_start_time', 0, 1, 1, 'Datetime', 32, 0, '', '', '', '', 'datetime', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 14, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:22:09', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('3f171c2ac96be117e97d4f436530d915', '5a46eebe3b5f48b3b21852858a8c533f', 'expire_date', '有效期', NULL, 0, 1, 1, 'Date', 0, 0, '', '', '', '', 'date', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 9, 'admin', '2024-09-18 17:23:07', '2024-08-30 10:35:44', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('3f1974d30cfabd1232b1357445b87bce', '3b6eab3feffc4cd6bcf28cf01decebd7', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, 'admin', '2024-12-05 11:43:17', '2024-08-30 10:25:23', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('3f2ace8f968a0e5b91d1340ee2957cda', '402860816bff91c0016bff91d8830007', 'real_name', '姓名', 'real_name', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 3, 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6007,18 +6031,19 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('40675bb9f053aabf8823ddf4b5389141', 'b81de38db24047b497d476516f8a0865', 'aa', 'aa', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 7, NULL, NULL, '2020-02-24 14:56:08', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('4164314d6a51d100169a29872b7504d8', '402860816bff91c0016bff91ca7e0002', 'cert_time', '发证时间', 'cert_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 3, 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('4184df7ecc4b24fd8d6c9f6fecfc914c', '1864484528728928257', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 4, 'admin', '2024-12-05 09:41:08', '2024-12-05 09:38:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('419b6ff9cc88221f081e1f74a2ae7295', 'ca19150a847245dab3d070aaf2c82586', 'proofreader', '校对员', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 11, 'admin', '2024-11-16 20:55:12', '2024-10-23 22:54:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('419b6ff9cc88221f081e1f74a2ae7295', 'ca19150a847245dab3d070aaf2c82586', 'proofreader', '校对员', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 11, 'admin', '2024-12-05 14:40:09', '2024-10-23 22:54:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('41b80b89de0ceb609eb016dacf106ef8', '553a4172fde446419cb602dc70f9ee67', 'shq', '省市区', NULL, 0, 1, 1, 'string', 100, 0, NULL, '', '', '', 'pca', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 28, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('41d4215c01b0d26871f2cb83d3e532ae', '402860816bff91c0016bff91c0cb0000', 'bpm_status', '流程状态', NULL, 0, 1, 1, 'string', 32, 0, '1', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 17, 'admin', '2019-07-19 18:09:01', '2019-07-19 15:35:23', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('42b4e09ef4be1b7faa9704b602b459be', '1829347928200749057', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, 'admin', '2024-11-14 15:31:47', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('42b4e09ef4be1b7faa9704b602b459be', '1829347928200749057', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, 'admin', '2024-12-05 14:36:15', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('42cccfa014c9e131a0a1b23f563d3688', '402860816bff91c0016bffa220a9000b', 'sex', '性别', 'sex', 0, 1, 1, 'string', 20, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 6, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), +('42e97c8159d05cc984c4b0dece23bdc8', '8b88392f44b64b8e92ddccac596247f0', 'humidity_requirements', '湿度要求', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 12, NULL, NULL, '2024-12-05 14:13:20', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('4312f618c83e07db82e468b81a1eaa45', '402860816bff91c0016bffa220a9000b', 'photo', '照片', 'photo', 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 20, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('4355aaad8679a1adf8578b20310e93c1', 'a2ca0c7297a8491ca849fc1a06c9efbf', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2021-01-24 14:39:35', '2021-01-24 14:38:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('4358a28a2ccef156778b737d4a75e0d6', '3b6eab3feffc4cd6bcf28cf01decebd7', 'images', '图片', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 12, NULL, NULL, '2024-12-05 11:43:17', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('435b57180fc995e3c4ec42516963bca3', '4028839a6de2ebd3016de2ebd3870000', 'wl_code', '物料编码', 'wl_code', 0, 1, 1, 'string', 60, 0, NULL, NULL, NULL, NULL, 'text', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'group', NULL, NULL, 6, NULL, NULL, '2019-10-19 15:29:30', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('43cce1a7732cd49345735afbf056ede6', '497144e626e84545b56f151c9f4d6e9e', 'test_date', '试验日期', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, NULL, NULL, '2024-08-30 10:42:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('43cee05c7a0ce2331d3564db9cb5d974', '5a46eebe3b5f48b3b21852858a8c533f', 'model', '型号', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 7, 'admin', '2024-09-18 17:23:07', '2024-08-30 10:35:44', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('4418bed65508622da99812c7bc153b48', 'ca19150a847245dab3d070aaf2c82586', 'report_name', '报告名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 14, NULL, NULL, '2024-11-16 20:55:12', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('4418bed65508622da99812c7bc153b48', 'ca19150a847245dab3d070aaf2c82586', 'report_name', '报告名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 14, 'admin', '2024-12-05 14:40:09', '2024-11-16 20:55:12', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('4430e8fef05b6718414d8ec868b54562', 'fafa347903804e89acc7c63e4ab3244c', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, NULL, NULL, '2024-10-09 20:52:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('44bdc595f1e565fc053e01134b92bb47', 'd3ae1c692b9640e0a091f8c46e17bb01', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, NULL, NULL, '2019-07-24 14:47:30', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('44e81e24d2384b0f187e8f69eda55390', '402860816bff91c0016bff91cda80003', 'create_time', '创建时间', 'create_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 10, 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6026,10 +6051,10 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('46285711382beae76c09bc3344093ed4', '1853426743397425154', 'device_function', '器件功能', 'file_name', 0, 1, 1, 'string', 1024, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 9, 'admin', '2024-11-14 15:25:22', '2024-11-04 21:19:05', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('469b250595f15dfebe69991d72e4bfb2', 'e9faf717024b4aae95cff224ae9b6d97', 'name', '员工姓名', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2019-07-03 18:23:49', '2019-07-03 18:22:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('46c13ceab79269d151c975bf11847a2e', '553a4172fde446419cb602dc70f9ee67', 'ldzjs', '联动组件三', NULL, 0, 1, 1, 'string', 255, 0, NULL, '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 31, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('46e9c238b1edc149600dc51c36cd001e', '1846024836387282946', 'test_equipment', '测试设备(json 大字段)', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 18, NULL, NULL, '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('46e9c238b1edc149600dc51c36cd001e', '1846024836387282946', 'test_equipment', '测试设备(json 大字段)', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 18, 'admin', '2024-12-05 14:21:26', '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('470a3a02210932c55950cd673c50705b', '553a4172fde446419cb602dc70f9ee67', 'geshu', 'integer类型', NULL, 0, 1, 1, 'int', 9, 0, NULL, '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 34, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), -('475c472262db51b1d6dc42db615fa9b5', '1846024836387282946', 'test_result', '测试结果', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 23, NULL, NULL, '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('4778efb6bcd08c987a93395c387f67ac', '1846024836387282946', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 5, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('475c472262db51b1d6dc42db615fa9b5', '1846024836387282946', 'test_result', '测试结果', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 23, 'admin', '2024-12-05 14:21:26', '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('4778efb6bcd08c987a93395c387f67ac', '1846024836387282946', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 5, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('47c21a6b45e59a6b70bb9c0cc4510a68', '1acb6f81a1d9439da6cc4e868617b565', 'integral_val', '积分值', NULL, 0, 1, 1, 'int', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 13, 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('4851697fdf63709d2bc7451b7415f4af', '32f75e4043ef4070919dbd4337186a3d', 'sex', '性别', NULL, 0, 1, 1, 'string', 32, 0, '1', 'sex', '', '', 'list', '', 120, NULL, '0', '', '', 1, 1, 1, 0, 'single', '', '', 6, 'admin', '2019-04-11 10:15:32', '2019-03-27 15:54:49', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('485a8ddce2c033f88af674ec98b68e32', '402860816bff91c0016bffa220a9000b', 'create_time', '创建时间', 'create_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 40, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6049,9 +6074,9 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('4c2cba9fc950333421c4193576b8384d', '32f75e4043ef4070919dbd4337186a3d', 'salary', '工资', NULL, 0, 1, 1, 'double', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 10, 'admin', '2019-04-11 10:15:32', '2019-03-28 15:24:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('4c570c5cf05590348e12621ca62773cf', '402860816aa5921f016aa5921f480000', 'name', '请假人', 'name', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 2, 'admin', '2019-05-11 15:31:54', '2019-05-11 14:26:19', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('4cacfa054e96791ab938b5c8f8e02cd1', '27fc5f91274344afa7673a732b279939', 'bpm_status', '流程状态', NULL, 0, 1, 1, 'string', 2, 0, '', 'bpm_status', '', '', 'list', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, NULL, NULL, '2019-07-01 16:28:20', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('4ce6a28294e0fed60a07392f707c6768', 'ca19150a847245dab3d070aaf2c82586', 'img_urls', '偏置原理图', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2024-11-16 20:55:12', '2024-10-23 22:54:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('4ce6a28294e0fed60a07392f707c6768', 'ca19150a847245dab3d070aaf2c82586', 'img_urls', '偏置原理图', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2024-12-05 14:40:09', '2024-10-23 22:54:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('4d0b04cbb7db89b5468f32edafb610bc', '402881fd812267500181226750e90000', 'good_type_id', '商品分类', NULL, 0, 1, 1, 'string', 32, 0, '', '0', 'ces_shop_type', 'id,pid,name,has_child', 'sel_tree', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 11, NULL, NULL, '2022-06-02 11:13:25', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('4d8997a03835574d431501d6aa907455', '1846024836387282946', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 4, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('4d8997a03835574d431501d6aa907455', '1846024836387282946', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 4, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('4dc3f7e772564de45773a8379adc4335', '3b5e18da618247539481816995b6bf9f', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('4e06626eb9d6f91c5f807066f2ff742e', '360542df1f4146ac9dc29659dbd69703', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, NULL, NULL, '2024-08-22 16:59:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('4e1a091c472f600c35793501cb9bf2d3', '360542df1f4146ac9dc29659dbd69703', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, NULL, NULL, '2024-08-22 16:59:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6062,7 +6087,8 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('4f7cba71de7afe6efbd024f5f9935521', '402860816bff91c0016bff91cda80003', 'to_time', '截止时间', 'to_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 4, 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('4f7f27ef4c2d9f1b8c4a19e3d0ae34fb', 'ea0a86437fd843c68fb47c3e0fc537c9', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, 'admin', '2024-09-19 15:08:35', '2024-08-30 10:31:36', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('4faa7848b92f05bcb3cf03de34af9ff2', 'cb2d8534a2f544bc9c618dd49da66336', 'ddd', 'dd', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, 'admin', '2020-02-24 17:22:42', '2020-02-24 15:15:14', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('4fac195d7b78c722bcea0bcf9ee462c2', '1846024836387282946', 'exception_record', '异常记录', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 11, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('4fac195d7b78c722bcea0bcf9ee462c2', '1846024836387282946', 'exception_record', '异常记录', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 11, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('4ff7605357ad221037e1ae5a395cb4fe', '1864545872732856322', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, 'admin', '2024-12-05 13:44:13', '2024-12-05 13:42:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('500467465ccd1405b6fcbc461d63ecce', '1853426999698759682', 'type', '试验类型', 'source', 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 6, 'admin', '2024-11-04 21:26:28', '2024-11-04 21:20:07', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('50552383ac67ed56760fb8c84d01de9e', '553a4172fde446419cb602dc70f9ee67', 'xlss', '字典表下拉搜索框', NULL, 0, 1, 1, 'string', 50, 0, NULL, 'username', 'sys_user', 'realname', 'sel_search', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 20, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('506c9b0b2331a24e5c284274d28fe569', '27fc5f91274344afa7673a732b279939', 'kkk', '描述', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2019-07-01 16:28:20', '2019-07-01 16:26:42', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6092,14 +6118,16 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('56cd0a76f922bf76d982b24a509e4782', '4028839a6de2ebd3016de2ebd3870000', 'create_time', '创建日期', 'create_time', 0, 1, 1, 'Datetime', 0, 0, NULL, NULL, NULL, NULL, 'date', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'group', NULL, NULL, 3, NULL, NULL, '2019-10-19 15:29:30', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('56e247f12d62b49cd9bd537e3efecf16', '402860816bff91c0016bff91c0cb0000', 'create_by', '创建人', 'create_by', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 12, 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('574d39a058312e048609bd22e25211c9', '1853632592350912514', 'review_process', '评审流程', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 7, 'admin', '2024-11-07 15:19:54', '2024-11-05 10:57:04', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('57542d356f11c3c1120c3bb09e1f6ea7', '1829347928200749057', 'environmental_temperature', '辐照环境温度', 'environmental_temperature', 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 8, 'admin', '2024-11-14 15:31:47', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('57542d356f11c3c1120c3bb09e1f6ea7', '1829347928200749057', 'environmental_temperature', '辐照环境温度', 'environmental_temperature', 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 8, 'admin', '2024-12-05 14:36:15', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('57552a4f0b7b5c096ab8985ced57cc7d', 'cb2d8534a2f544bc9c618dd49da66336', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2020-02-24 17:22:42', '2020-02-24 15:15:14', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), +('57e15891ccf212d33eb6a5625c53c9c0', '1864545872732856322', 'sample_model', '样品型号', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 8, 'admin', '2024-12-05 13:44:13', '2024-12-05 13:42:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('57f1320ad374088f858e88d09543b412', '1848200093202231297', 'comment', '备注', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 10, 'admin', '2024-10-23 17:44:03', '2024-10-21 11:10:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('581d8e8ce270b762458121b1dea0be9a', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, NULL, NULL, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), +('58822cc6a06b4af1b85206a003f21296', '1864545872732856322', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, 'admin', '2024-12-05 13:44:13', '2024-12-05 13:42:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('588400f6ebcdd0bc9bb560dd36636af9', 'e2faf977fdaf4b25a524f58c2441a51c', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('58a96f945912d33b64ebf5dee98156dc', '402860816bff91c0016bffa220a9000b', 'mobile', '手机号', 'mobile', 0, 1, 1, 'string', 20, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 19, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('58eea85add4788b83c893092434bc413', 'fb19fb067cd841f9ae93d4eb3b883dc0', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 4, NULL, NULL, '2019-03-23 11:39:48', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('5907929496702dfcadb5581f5339d5b9', '97283326c7384df28959e8e9a9f5013f', 'client_name', '委托方名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 11, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('5907929496702dfcadb5581f5339d5b9', '97283326c7384df28959e8e9a9f5013f', 'client_name', '委托方名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 11, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('59ae1e853668c676e85329aa029c68a6', '402860816bff91c0016bff91c0cb0000', 'status', '状态(1:申请中 2:通过)', 'status', 0, 1, 1, 'string', 2, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 11, 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('5a1ab458d88bb766f92c3d791495cdcd', '402860816bff91c0016bff91d2810005', 'age', '年龄', 'age', 0, 1, 1, 'int', 10, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 5, 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('5a3cee6f374af8b9fb8808a903147870', '1853632592350912514', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, 'admin', '2024-11-07 15:19:54', '2024-11-05 10:57:04', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6113,26 +6141,28 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('5c25a6636c8d2c93d2859c7db6cb8281', '553a4172fde446419cb602dc70f9ee67', 'xldx', '字典下拉多选框', NULL, 0, 1, 1, 'string', 250, 0, NULL, 'urgent_level', '', '', 'list_multi', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 19, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('5c64d270eb4ee8ea6bf55c7e4257f162', '553a4172fde446419cb602dc70f9ee67', 'flzds', '分类字典树', NULL, 0, 1, 1, 'string', 100, 0, NULL, 'B02', '', '', 'cat_tree', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 23, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('5c76f5ecc774d7339eb0c2199c0052bc', '402860816bff91c0016bff91c0cb0000', 'biz_no', '编号', 'biz_no', 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 2, 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('5c84d96fa1deb2b7a2782691281dd61f', 'ca19150a847245dab3d070aaf2c82586', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2024-11-16 20:55:12', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('5c84d96fa1deb2b7a2782691281dd61f', 'ca19150a847245dab3d070aaf2c82586', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2024-12-05 14:40:09', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('5c8c8d573e01e4f40b5a7c451515e1d2', '32feeb502544416c9bf41329c10a88f4', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2019-08-23 20:03:40', '2019-07-02 18:23:23', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('5d1137e3439691b967e2065be98bffb6', '1829347928200749057', 'condition_a', '条件A', NULL, 0, 1, 1, 'string', 512, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 11, NULL, NULL, '2024-11-14 15:31:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('5c92cb78cff44973863d63465e147082', '1864545872732856322', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-12-05 13:44:13', '2024-12-05 13:42:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('5d1137e3439691b967e2065be98bffb6', '1829347928200749057', 'condition_a', '条件A', NULL, 0, 1, 1, 'string', 512, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 11, 'admin', '2024-12-05 14:36:15', '2024-11-14 15:31:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('5d4ed230c7d7eda42ec4f8794ad5f21f', '5a46eebe3b5f48b3b21852858a8c533f', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2024-09-18 17:23:07', '2024-08-30 10:35:44', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('5dfbea516ee2390d712eace5405c5219', '402860816bff91c0016bff91ca7e0002', 'create_by', '创建人', 'create_by', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 9, 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('5e103eaddac8fc56c824513f88cbbbd5', '1846024836387282946', 'test_parameters', '测试参数(json 大字段)', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 17, NULL, NULL, '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('5e103eaddac8fc56c824513f88cbbbd5', '1846024836387282946', 'test_parameters', '测试参数(json 大字段)', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 17, 'admin', '2024-12-05 14:21:26', '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('5e4484b7348dc3e59a0c58bdc3828cc0', '27fc5f91274344afa7673a732b279939', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2019-07-01 16:28:20', '2019-07-01 16:26:42', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('5e4ac29ac2007ceabf93368330290a42', '402860816bff91c0016bff91d8830007', 'order_no', '序号', 'order_no', 0, 1, 1, 'int', 10, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 9, 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('5e729f9823b5cc96c50b0b7c0f07eb05', '402880e5721355dd01721355dd390000', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, NULL, NULL, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), -('5eba159903e4928b7a37f02b27f6bec7', '97283326c7384df28959e8e9a9f5013f', 'copy_count', '复制次数', NULL, 0, 1, 1, 'int', 10, 0, '0', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 20, NULL, NULL, '2024-11-13 23:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('5eba159903e4928b7a37f02b27f6bec7', '97283326c7384df28959e8e9a9f5013f', 'copy_count', '复制次数', NULL, 0, 1, 1, 'int', 10, 0, '0', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 20, 'admin', '2024-12-05 14:50:53', '2024-11-13 23:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('5fc27a5e0d2389456d38ce3dd0d5da06', '1864545872732856322', 'sample_type', '样品类型', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 7, 'admin', '2024-12-05 13:44:13', '2024-12-05 13:42:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('5fd5258240475429947670d7b41152a8', '1848200093202231297', 'bias_condition', '偏置条件(json 大字段)', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 16, 'admin', '2024-10-23 17:44:03', '2024-10-23 17:41:50', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('60b3b452232904f5a1130348bc1eab53', '402881e6760269a20176026d25650002', 'sys_org_code', '所属部门编码', 'sys_org_code', 0, 1, 1, 'string', 64, 0, NULL, NULL, NULL, NULL, 'text', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'single', NULL, NULL, 16, NULL, NULL, '2020-11-26 10:41:17', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('60eed6c429cf7796c3f0a17faaed00da', 'b493c5fd4fa64a3a84e74ee171763e37', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, NULL, NULL, '2021-06-07 18:13:37', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('617349b18dab429009ccd304fd7d459c', '4028839a6de2ebd3016de2ebd3870000', 'update_by', '更新人', 'update_by', 0, 1, 1, 'string', 50, 0, NULL, NULL, NULL, NULL, 'text', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'group', NULL, NULL, 4, NULL, NULL, '2019-10-19 15:29:30', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('61c7a0058c264dd746eb35e6f50fc15b', '402860816aa5921f016aa5dedcb90009', 'update_time', '更新日期', 'update_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'group', '', '', 5, 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('62032b434ff5cfd6384fafde0328c1d2', '1846024836387282946', 'radiation_detail', '辐照详情(json存储)', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 12, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('62032b434ff5cfd6384fafde0328c1d2', '1846024836387282946', 'radiation_detail', '辐照详情(json存储)', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 12, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('6232ade7e2a0c1e97e2c0945b32e61b6', '402860816bff91c0016bffa220a9000b', 'paying_social_insurance', '是否上社保', 'paying_social_insurance', 0, 1, 1, 'string', 20, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 32, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('631a606d35a74c2036a81f27dd16a1a6', 'feea98637c2144caae7c5d56a815a245', 'dd', 'dd', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, NULL, NULL, '2021-10-27 10:24:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('635e09afc01aad757faacf1321465c23', 'b81de38db24047b497d476516f8a0865', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, NULL, NULL, '2020-02-24 14:56:08', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('63fa3bae8badc292b2c31a8bdbced27d', '1829347928200749057', 'code', '标准代码', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', NULL, NULL, 7, 'admin', '2024-11-14 15:31:47', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('63fa3bae8badc292b2c31a8bdbced27d', '1829347928200749057', 'code', '标准代码', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', NULL, NULL, 7, 'admin', '2024-12-05 14:36:15', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('641e74beb228275dc2ca38a977b76c47', '553a4172fde446419cb602dc70f9ee67', 'nyrsfm', '年月日时分秒', NULL, 0, 1, 1, 'Datetime', 0, 0, NULL, '', '', '', 'datetime', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 14, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('644fd23f854f98967532aea605025729', '1857015207720738817', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 4, 'admin', '2024-11-14 19:48:08', '2024-11-14 18:58:22', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('64555d67157da8a735212fab0244ff4b', '8a31140f10a9417495ff2fff77deab55', 'attachment', '附件', NULL, 0, 1, 1, 'Blob', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 12, 'admin', '2024-09-11 16:44:20', '2024-08-30 10:18:49', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6140,15 +6170,15 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('654362725195829005036b3db47ec826', '402860816bff91c0016bffa220a9000b', 'post', '职务', 'post', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 4, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('656ec51bb57da5a47076f8a26053bbbb', '553a4172fde446419cb602dc70f9ee67', 'zdmrz', '自定义查询', NULL, 0, 1, 1, 'string', 50, 0, NULL, '', '', '', 'text', '', 120, '', '0', '', '1', 1, 1, 1, 0, 'single', '', '', 37, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '1', '', 'sex', '', 'list', '1', NULL, NULL, '0'), ('65a867f41ae9e27fc4aeb0ef23efeab5', '497144e626e84545b56f151c9f4d6e9e', 'radiation_source', '辐射源', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, NULL, NULL, '2024-08-30 10:42:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('65e0ee0de0e40e3f51af9505ff0d7e0a', '1829347928200749057', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-11-14 15:31:47', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('65e0ee0de0e40e3f51af9505ff0d7e0a', '1829347928200749057', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-12-05 14:36:15', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('6603058186832c4ff9e8c6e43baa5c3d', '86bf17839a904636b7ed96201b2fa6ea', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 6, 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('665fbf3f761d80c17119a638e5965c0b', 'fbcd53c12cb642e8985bf3ea4cd0e864', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2024-11-14 18:03:56', '2024-08-30 10:07:18', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('668fd96f6a6552fc08727ae52c7599c7', 'c452d7508f38476da0c80311b1e1d329', 'version', '版本号', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, NULL, NULL, '2024-11-21 10:33:05', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('66a7ef842bc34e105a90186e48167ef2', 'dbf4675875e14676a3f9a8b2b8941140', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, NULL, NULL, '2019-05-27 18:02:07', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('66b2fdbaf6ddca81282c225da0305691', '97283326c7384df28959e8e9a9f5013f', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('66b2fdbaf6ddca81282c225da0305691', '97283326c7384df28959e8e9a9f5013f', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('66cfa8d81cac7c6d67d0a0b843bd9936', '3b6eab3feffc4cd6bcf28cf01decebd7', 'model', '型号', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 7, 'admin', '2024-12-05 11:43:17', '2024-08-30 10:25:23', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('673076e243d2ac5d98b0ea3cad5f150c', '360542df1f4146ac9dc29659dbd69703', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, NULL, NULL, '2024-08-22 16:59:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('6757619e35377abbdc0464d0f817d4b6', '97283326c7384df28959e8e9a9f5013f', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('6757619e35377abbdc0464d0f817d4b6', '97283326c7384df28959e8e9a9f5013f', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('6799a2e6275e01716c7ff59e1ea05713', '8a31140f10a9417495ff2fff77deab55', 'type', '类型', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 11, 'admin', '2024-09-11 16:44:20', '2024-08-30 10:18:49', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('683c1522500f5e1dd58856f7aeff728f', '1846024929844764674', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, 'admin', '2024-12-05 11:23:14', '2024-10-15 11:06:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('6862a2257f87839eb09576df1609a1a8', '1864324542325420034', 'sample_type', '样品类型', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 7, 'admin', '2024-12-05 11:03:29', '2024-12-05 00:06:52', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6161,7 +6191,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('69d11490788fecfc9fb7d74bf449ba86', '32f75e4043ef4070919dbd4337186a3d', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2019-04-11 10:15:32', '2019-03-27 15:54:49', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('6a878103bf65c35722ea96ed47a9e69a', '497144e626e84545b56f151c9f4d6e9e', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, NULL, NULL, '2024-08-30 10:42:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('6ab2e3d9b944701b405fb1a5ed167012', '86bf17839a904636b7ed96201b2fa6ea', 'zong_price', '单品总价', NULL, 0, 1, 1, 'double', 10, 3, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 10, 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('6ab6ab6f821845c2850148998450514f', '1829347928200749057', 'condition_e', '条件E', NULL, 0, 1, 1, 'string', 512, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 15, NULL, NULL, '2024-11-14 15:31:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('6ab6ab6f821845c2850148998450514f', '1829347928200749057', 'condition_e', '条件E', NULL, 0, 1, 1, 'string', 512, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 15, 'admin', '2024-12-05 14:36:15', '2024-11-14 15:31:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('6b6f3aa00b8e73fb785154e795189739', '402860816aa5921f016aa5dedcb90009', 'start_time', '会签发起时间', 'start_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 7, 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('6beb40bdd28af22e06b26640bc0c3f4d', '3b5e18da618247539481816995b6bf9f', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 1, 'single', '', '', 1, 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('6c35eb97737e9f86279939d264454a94', '86bf17839a904636b7ed96201b2fa6ea', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), @@ -6169,7 +6199,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('6cfb5acbbb69782bf0c7043b53f595b2', '402860816bff91c0016bff91cda80003', 'update_by', '更新人', 'update_by', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 11, 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('6d03a7774a50c6e6f76dbc7a8269beba', '3b5e18da618247539481816995b6bf9f', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('6d4a4414b55ad5b6f31c8fb327dad834', '09fd28e4b7184c1a9668496a5c496450', 'address', '常用地址', NULL, 0, 1, 1, 'string', 300, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 11, 'admin', '2022-05-07 19:05:56', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('6d517ec4ef8f07366fc28d3541a055b0', '97283326c7384df28959e8e9a9f5013f', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('6d517ec4ef8f07366fc28d3541a055b0', '97283326c7384df28959e8e9a9f5013f', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('6e207c51aef1ce67162069f491b28058', 'ea0a86437fd843c68fb47c3e0fc537c9', 'address', '地址', NULL, 0, 1, 1, 'string', 2048, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 7, 'admin', '2024-09-19 15:08:35', '2024-08-30 10:31:36', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('6e6cca7e5d1ce6d92d1ab740881ff3ed', 'c452d7508f38476da0c80311b1e1d329', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, 'admin', '2024-11-21 10:33:05', '2024-08-22 17:02:38', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('6ed8d9acef3cccd1b8fd659b3b538023', '53a3e82b54b946c2b904f605875a275c', 'price', '价格', NULL, 0, 1, 1, 'BigDecimal', 10, 5, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 7, 'admin', '2022-10-25 11:10:48', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6192,7 +6222,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('7365f05f551092716223d5d449efd8c7', 'beee191324fd40c1afec4fda18bd9d47', 'name', 'ss', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2019-04-13 13:41:13', '2019-04-13 13:40:56', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('73a99000d242af33117d4ce45e94db54', '2bed5edf282d49fb9281145944d924a1', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, NULL, NULL, '2024-09-18 20:45:37', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('73d3b57df0c6cf15c21970f4dd979319', '402880e5721355dd01721355dd390000', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 5, NULL, NULL, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), -('73dd22888354f75fe414e2b3c677b9b0', '97283326c7384df28959e8e9a9f5013f', 'start_date', '试验日期', 'experiment_date', 0, 1, 1, 'Datetime', 32, 0, '', '', '', '', 'datetime', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:54:30', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('73dd22888354f75fe414e2b3c677b9b0', '97283326c7384df28959e8e9a9f5013f', 'start_date', '试验日期', 'experiment_date', 0, 1, 1, 'Datetime', 32, 0, '', '', '', '', 'datetime', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:54:30', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('742329ccdb185cf5d3e0b5b0c05dcffa', '402860816bff91c0016bffa220a9000b', 'interest', '兴趣爱好', 'interest', 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 34, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('744444a7ada3bbb05c6b114b5ba0d477', '402860816aa5921f016aa5dedcb90009', 'id', 'id', 'id', 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'group', '', '', 1, 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('74ae2a4024b66786a413bc1dc6e91233', '1864324542325420034', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, 'admin', '2024-12-05 11:03:29', '2024-12-04 23:03:03', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6207,13 +6237,14 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('766ca866b72d118f5d8883de46a8c043', '4028839a6de2ebd3016de2ebd3870000', 'supplier', '供应商', 'supplier', 0, 1, 1, 'string', 32, 0, NULL, NULL, NULL, NULL, 'text', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'group', NULL, NULL, 15, NULL, NULL, '2019-10-19 15:29:30', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('76c64fdb02faecd86c817cbb58d293c2', '402881e6760269a201760269a2af0000', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 6, NULL, NULL, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('76dac6109d410ed6267cc835d09895dd', '1857015207720738817', 'visit_count', '访问次数', NULL, 0, 1, 1, 'int', 10, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, NULL, NULL, '2024-11-14 19:48:08', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('772415b4678fd3df3a0c0d943afc1ead', '1829347928200749057', 'anneal_times', '退火时长', 'anneal_times', 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 9, 'admin', '2024-11-14 15:31:47', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('772415b4678fd3df3a0c0d943afc1ead', '1829347928200749057', 'anneal_times', '退火时长', 'anneal_times', 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 9, 'admin', '2024-12-05 14:36:15', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('772cb09404ecb07d3738601e1e7fb028', 'c452d7508f38476da0c80311b1e1d329', 'file_path', '文件地址', NULL, 0, 1, 1, 'string', 2048, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2024-11-21 10:33:05', '2024-08-22 17:02:38', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('773910592db75466ccb080797cd66e7a', '553a4172fde446419cb602dc70f9ee67', 'price', '单价', NULL, 0, 1, 1, 'BigDecimal', 10, 2, NULL, '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('7752fc275e37636a07613f695c6d9c7f', '8a31140f10a9417495ff2fff77deab55', 'name', '元器件名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 7, 'admin', '2024-09-11 16:44:20', '2024-08-30 10:18:49', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('77a3c732d75dce8f5e9980c3c5e1fd7d', '1864545872732856322', 'equipment_type', '设备类型', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 11, 'admin', '2024-12-05 13:44:14', '2024-12-05 13:42:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('78071d0b95128cd69c9ecc0a1a023477', '722c27169ad44f689c5885ca586b248f', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2024-11-13 17:24:13', '2024-08-21 16:19:14', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('785764f89576aeba60d82128be39b7b4', '1848201478455013377', 'device_batch', '器件批次', 'file_id', 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 10, 'admin', '2024-10-23 16:53:48', '2024-10-21 11:15:45', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('789ef9f7fc9e9d4514a1a7415485187d', '1829347928200749057', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 5, 'admin', '2024-11-14 15:31:47', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('789ef9f7fc9e9d4514a1a7415485187d', '1829347928200749057', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 5, 'admin', '2024-12-05 14:36:15', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('78a40344207c791b8d7ac7de721ce1c4', '79091e8277c744158530321513119c68', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2019-05-11 15:29:47', '2019-05-11 15:27:17', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('78eb7e3b77cd49f9acb9b024cfe834e1', '402860816aa5921f016aa5dedcb90009', 'create_time', '创建日期', 'create_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'group', '', '', 3, 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('78fd804d93dc716fd8c2ccc45f788565', 'fb7125a344a649b990c12949945cb6c1', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, 'admin', '2019-03-26 19:24:11', '2019-03-26 19:01:52', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6239,7 +6270,9 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('7d98d9401ad9caf090ea53a965b698ca', '1853426999698759682', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-11-04 21:26:28', '2024-11-04 21:20:07', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('7e066f60680158d47b328ef519d80e49', 'beee191324fd40c1afec4fda18bd9d47', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2019-04-13 13:41:13', '2019-04-13 13:40:56', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('7e331396f6e544ae801690cf475e7615', '402881e6760269a201760269a2af0000', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, NULL, NULL, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), -('7e5013b8a3e970fdcef2b577829bfa83', '402881fd812267500181226750e90000', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, NULL, NULL, '2022-06-02 11:13:25', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), +('7e5013b8a3e970fdcef2b577829bfa83', '402881fd812267500181226750e90000', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, NULL, NULL, '2022-06-02 11:13:25', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'); + +INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_field_txt`, `db_field_name_old`, `db_is_key`, `db_is_null`, `db_is_persist`, `db_type`, `db_length`, `db_point_length`, `db_default_val`, `dict_field`, `dict_table`, `dict_text`, `field_show_type`, `field_href`, `field_length`, `field_valid_type`, `field_must_input`, `field_extend_json`, `field_default_value`, `is_query`, `is_show_form`, `is_show_list`, `is_read_only`, `query_mode`, `main_table`, `main_field`, `order_num`, `update_by`, `update_time`, `create_time`, `create_by`, `converter`, `query_def_val`, `query_dict_text`, `query_dict_field`, `query_dict_table`, `query_show_type`, `query_config_flag`, `query_valid_type`, `query_must_input`, `sort_flag`) VALUES ('7f10901c6ade3aa9d9ff46ed7039c70f', '1acb6f81a1d9439da6cc4e868617b565', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('7f603ca97e99bdf7dad11d1f94e91534', '1864485221946716162', 'sample_type', '样品类型', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 7, 'admin', '2024-12-05 09:44:10', '2024-12-05 09:41:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('7f706aa6ea10963749be21bceb73227f', '1864485221946716162', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, 'admin', '2024-12-05 09:44:10', '2024-12-05 09:41:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6254,9 +6287,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('8422485e1cbf4455f9ded7d0af59379c', '402860816bff91c0016bff91cfea0004', 'to_time', '截止时间', 'to_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 4, 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('844334fbd9dc9bd87682d7058ee65bcb', '553a4172fde446419cb602dc70f9ee67', 'mi_ma', '密码', NULL, 0, 1, 1, 'string', 32, 0, NULL, '', '', '', 'password', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('845c70568d44a074f067d6d277950525', '402860816bff91c0016bffa220a9000b', 'entrytime', '入职时间', 'entrytime', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 23, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('845f20dcbcb3cae414387203a8c70f1d', '553a4172fde446419cb602dc70f9ee67', 'name', '用户名', NULL, 0, 1, 1, 'string', 50, 0, NULL, '', '', '', 'text', '', 120, '', '1', '', '', 1, 1, 1, 0, 'single', '', '', 7, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'); - -INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_field_txt`, `db_field_name_old`, `db_is_key`, `db_is_null`, `db_is_persist`, `db_type`, `db_length`, `db_point_length`, `db_default_val`, `dict_field`, `dict_table`, `dict_text`, `field_show_type`, `field_href`, `field_length`, `field_valid_type`, `field_must_input`, `field_extend_json`, `field_default_value`, `is_query`, `is_show_form`, `is_show_list`, `is_read_only`, `query_mode`, `main_table`, `main_field`, `order_num`, `update_by`, `update_time`, `create_time`, `create_by`, `converter`, `query_def_val`, `query_dict_text`, `query_dict_field`, `query_dict_table`, `query_show_type`, `query_config_flag`, `query_valid_type`, `query_must_input`, `sort_flag`) VALUES +('845f20dcbcb3cae414387203a8c70f1d', '553a4172fde446419cb602dc70f9ee67', 'name', '用户名', NULL, 0, 1, 1, 'string', 50, 0, NULL, '', '', '', 'text', '', 120, '', '1', '', '', 1, 1, 1, 0, 'single', '', '', 7, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('8529ddaed8d5f3d9084e873203d55cac', '402860816bff91c0016bffa220a9000b', 'marital_status', '婚姻状况', 'marital_status', 0, 1, 1, 'string', 20, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 24, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('857a0daa9cd8a058f2f15fc7c5fb3571', '402860816bff91c0016bffa220a9000b', 'email', '邮箱', 'email', 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 17, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('85e43fa87074845f86cf52606a23a57c', 'b81de38db24047b497d476516f8a0865', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, NULL, NULL, '2020-02-24 14:56:08', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6283,25 +6314,25 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('8a6440c447ca97b1ceac40fa8576044e', '3b5e18da618247539481816995b6bf9f', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 6, 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('8a940759fac6cbb1f9201f88cbda6f2a', '497144e626e84545b56f151c9f4d6e9e', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, NULL, NULL, '2024-08-30 10:42:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('8a9d6bbbe45fd3539a8cb3ba2cee470a', '402881e6760269a201760269a2af0000', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 5, NULL, NULL, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), -('8aa083dfa2b8dffcabf5e12a3e166595', '8b88392f44b64b8e92ddccac596247f0', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, 'admin', '2024-09-18 19:21:22', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('8aa083dfa2b8dffcabf5e12a3e166595', '8b88392f44b64b8e92ddccac596247f0', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, 'admin', '2024-12-05 14:13:20', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('8ac8a0c0087469a4e7579229ff17f273', 'e5464aa8fa7b47c580e91593cf9b46dc', 'jifen', '合计积分', NULL, 0, 1, 1, 'int', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 10, 'admin', '2019-04-24 17:09:49', '2019-04-24 11:05:10', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('8b0d9ecfe8d44282b973cd56bd99f1a8', '553a4172fde446419cb602dc70f9ee67', 'xiala', '字典下拉', NULL, 0, 1, 1, 'string', 50, 0, NULL, 'sex', '', '', 'list', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 9, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('8b13e5d2bb8826c1c8b523b32c6576ef', 'c256ecba74534bb080ee00d3d00492e0', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, NULL, NULL, '2024-08-30 11:07:23', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('8b669a90cd814f2cbd78ea2cc33bc4b2', '1853426743397425154', 'experiment_user', '试验人员', NULL, 0, 1, 1, 'string', 1024, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 14, 'admin', '2024-11-14 15:25:22', '2024-11-04 21:19:05', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('8b9f193d4dff30b13d37415addcea036', '1829347928200749057', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 4, 'admin', '2024-11-14 15:31:47', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('8b9f193d4dff30b13d37415addcea036', '1829347928200749057', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 4, 'admin', '2024-12-05 14:36:15', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('8bbda3d8a56687e30ab796da3b64ae4c', '1853426999698759682', 'client', '委托方', 'name', 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 8, 'admin', '2024-11-04 21:26:28', '2024-11-04 21:20:06', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('8bd4deadc9e96c1a6d7abd77033105f6', 'e67d26b610dd414c884c4dbb24e71ce3', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2019-04-24 11:03:32', '2019-04-24 11:02:57', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('8c10f1728f8aa4f0a650af5a6856ccaa', 'f9fb8bee1a64472889d077c757b9acc7', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2021-08-17 13:58:15', '2021-08-17 13:57:48', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('8c1b6fff73650b8650947c2a29c63492', '402881e6760269a201760269a2af0000', 'sex', '下拉框', NULL, 0, 1, 1, 'string', 32, 0, '', 'sex', '', '', 'list', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 8, NULL, NULL, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '1'), ('8c6518fec11fc4769ba4eb770c9e00f7', '4028839a6de2ebd3016de2ebd3870000', 'integral_val', '积分值', 'integral_val', 0, 1, 1, 'int', 10, 0, NULL, NULL, NULL, NULL, 'text', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'group', NULL, NULL, 11, NULL, NULL, '2019-10-19 15:29:30', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('8cb13ac3abad412a8e250492064dc768', '8b88392f44b64b8e92ddccac596247f0', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 50, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2024-09-18 19:21:22', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('8cb13ac3abad412a8e250492064dc768', '8b88392f44b64b8e92ddccac596247f0', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 50, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2024-12-05 14:13:20', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('8ccb0d0a641d442808f07dd2e3a70ef0', '2bed5edf282d49fb9281145944d924a1', 'test_target', '检测对象', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 6, NULL, NULL, '2024-09-18 20:45:37', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('8cf6b2905bcf2c649931943f66190c26', '1853426743397425154', 'origin_data', '原始数据', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 18, 'admin', '2024-11-14 15:25:22', '2024-11-11 16:27:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('8d304b0cf4ad3e1d4983dd6ebf100fbc', '3b6eab3feffc4cd6bcf28cf01decebd7', 'factory_no', '出厂编号', NULL, 0, 0, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '1', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2024-12-05 11:43:17', '2024-08-30 10:25:23', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('8dc143e564aa30dfc3cb4dedf638260e', '1857015207720738817', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, 'admin', '2024-11-14 19:48:08', '2024-11-14 18:58:22', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('8e1212df6a94ed8f5102a327564e5af6', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'name', '分类名字', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 7, NULL, NULL, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('8e131d4a438c907b3272474780be7603', '402880eb71d52dc30171d52dc3a10000', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 8, NULL, NULL, '2020-05-02 19:37:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('8e5e7b7cbd0f4caefa6df6d1c6857ff8', 'ca19150a847245dab3d070aaf2c82586', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2024-11-16 20:55:12', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('8e5e7b7cbd0f4caefa6df6d1c6857ff8', 'ca19150a847245dab3d070aaf2c82586', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2024-12-05 14:40:09', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('8ea43fd1e4ce82becee61b2f1e2e843f', '32feeb502544416c9bf41329c10a88f4', 'sex', '性别', NULL, 0, 1, 1, 'string', 32, 0, '', 'sex', '', '', 'list', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2019-08-23 20:03:40', '2019-07-02 18:23:23', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('8f1d302868640b72cef52171a023a203', 'e9faf717024b4aae95cff224ae9b6d97', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2019-07-03 18:23:49', '2019-07-03 18:22:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('8f3e6fb68179c690f748f3c541fb50f1', '7ea60a25fa27470e9080d6a921aabbd1', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, NULL, NULL, '2019-04-17 00:22:21', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6311,7 +6342,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('903c33f7d18175a269b783cd4288216f', '402881e6760269a20176026d25650002', 'update_time', '修改时间', 'update_time', 0, 1, 1, 'Datetime', 0, 0, NULL, NULL, NULL, NULL, 'date', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'single', NULL, NULL, 15, NULL, NULL, '2020-11-26 10:41:17', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('909b3de0c8a48a21ef8cf98eb4831689', '56efb74326e74064b60933f6f8af30ea', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('90f39a6e29dae2e1fbb59d7d605f7c09', '1acb6f81a1d9439da6cc4e868617b565', 'iz_valid', '启用状态', NULL, 0, 1, 1, 'string', 2, 0, '', 'air_china_valid', '', '', 'list', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 11, 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('9183c7c5bb2c22deb834129d5c3974af', '8b88392f44b64b8e92ddccac596247f0', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2024-09-18 19:21:22', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('9183c7c5bb2c22deb834129d5c3974af', '8b88392f44b64b8e92ddccac596247f0', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2024-12-05 14:13:20', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('918b8d661e480624713ddcff1bdda4f4', '402881e6760269a20176026d25650002', 'birthday', '生日', 'birthday', 0, 1, 1, 'Datetime', 0, 0, NULL, NULL, NULL, NULL, 'date', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'single', NULL, NULL, 9, NULL, NULL, '2020-11-26 10:41:17', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('91e40eae77666c1b558d343339afab09', 'fafa347903804e89acc7c63e4ab3244c', 'type', '样品类型', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 6, NULL, NULL, '2024-10-09 20:52:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('921cc5a92a79e1e21e9e631a1b7f3fbd', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 1, 'single', '', '', 1, NULL, NULL, '2020-05-07 22:46:31', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), @@ -6326,7 +6357,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('95317737d9c7cf6811febb7cd95dfadd', '2bed5edf282d49fb9281145944d924a1', 'test_standard', '检测标准', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, NULL, NULL, '2024-09-18 20:45:37', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('959707b54a7f6873a1e397363d7cea20', '1864323864098074625', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', NULL, NULL, 0, 'admin', '2024-12-05 00:43:34', '2024-12-04 23:00:21', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('960d2847922b61dadeb3518ef55fb0c1', '1acb6f81a1d9439da6cc4e868617b565', 'wl_name', '物料名称', NULL, 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 7, 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('9615d79fa44de61d2993469ae019c695', '1829347928200749057', 'condition_c', '条件C', NULL, 0, 1, 1, 'string', 512, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 13, NULL, NULL, '2024-11-14 15:31:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('9615d79fa44de61d2993469ae019c695', '1829347928200749057', 'condition_c', '条件C', NULL, 0, 1, 1, 'string', 512, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 13, 'admin', '2024-12-05 14:36:15', '2024-11-14 15:31:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('9631b7ef083ddf82b251ea2ca086e457', 'c452d7508f38476da0c80311b1e1d329', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2024-11-21 10:33:05', '2024-08-22 17:02:38', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('9665f02764774fdd77c19923d3ff3c3e', '4028318169e81b970169e81b97650000', 'cost_time', '耗时', 'cost_time', 0, 1, 1, 'string', 19, 0, NULL, NULL, NULL, NULL, 'text', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'group', NULL, NULL, 12, NULL, NULL, '2019-04-04 19:28:36', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('966a4988298d5cb0be47848735ce8cb7', '4028839a6de2ebd3016de2ebd3870000', 'xg_shangxian', '选购上限', 'xg_shangxian', 0, 1, 1, 'int', 10, 0, NULL, NULL, NULL, NULL, 'text', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'group', NULL, NULL, 12, NULL, NULL, '2019-10-19 15:29:30', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6335,8 +6366,8 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('96a36af645d66226cf3ecf0f40dab532', '2c92808393927efd0193927efd150000', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', NULL, NULL, 0, NULL, NULL, '2024-12-05 00:26:56', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('96c585a4f71e5c38ed25b9741366365b', '402860816bff91c0016bff91c7010001', 'sys_org_code', '组织机构编码', 'sys_org_code', 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 11, 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('9765efa2cafde6d0ede2215848c9e80b', '32f75e4043ef4070919dbd4337186a3d', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 0, 'admin', '2019-04-11 10:15:32', '2019-03-27 15:54:49', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('9788a3d83a707ebe87718c477b0411f6', 'ca19150a847245dab3d070aaf2c82586', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, 'admin', '2024-11-16 20:55:12', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('983271bdf1ecf59a0da8ba317e6078e2', 'ca19150a847245dab3d070aaf2c82586', 'confirmer', '确认员', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 12, 'admin', '2024-11-16 20:55:12', '2024-10-23 22:54:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('9788a3d83a707ebe87718c477b0411f6', 'ca19150a847245dab3d070aaf2c82586', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, 'admin', '2024-12-05 14:40:09', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('983271bdf1ecf59a0da8ba317e6078e2', 'ca19150a847245dab3d070aaf2c82586', 'confirmer', '确认员', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 12, 'admin', '2024-12-05 14:40:09', '2024-10-23 22:54:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('9869d3d9f71d01b504fdfb4486878ace', '5a46eebe3b5f48b3b21852858a8c533f', 'radiation_source', '辐射源', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 6, 'admin', '2024-09-18 17:23:07', '2024-09-18 15:40:48', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('9874c79ce2e8663867d20ba4a5058ebd', '553a4172fde446419cb602dc70f9ee67', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, NULL, NULL, NULL, NULL, 'text', NULL, 120, '', '1', NULL, NULL, 0, 0, 0, 1, 'single', NULL, NULL, 0, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL), ('98b1fb8bc6a3c4ac412b25c476e1b6cc', '1848200093202231297', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-10-23 17:44:03', '2024-10-21 11:10:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6361,12 +6392,12 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('9e82f7b03355c2bf169468054feee735', '1848201478455013377', 'manufacturer', '生产厂家', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 11, 'admin', '2024-10-23 16:53:49', '2024-10-21 11:15:45', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('9f7014d250353b6b57aa2488a59e154b', 'ea0a86437fd843c68fb47c3e0fc537c9', 'time', '创建时间', NULL, 0, 1, 1, 'Date', 0, 0, '', '', '', '', 'date', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 9, NULL, NULL, '2024-09-19 15:08:35', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('a01a7fe5660206e6f407ed98b6c732d6', '402860816bff91c0016bff91cfea0004', 'phone', '联系方式', 'phone', 0, 1, 1, 'string', 20, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 7, 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('a01af4e4c463826e64cd9f81ce15efb7', '97283326c7384df28959e8e9a9f5013f', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('a01af4e4c463826e64cd9f81ce15efb7', '97283326c7384df28959e8e9a9f5013f', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('a029ecf9b943773bdf30a490e9922e45', '553a4172fde446419cb602dc70f9ee67', 'zdbxldx', '字典表下拉多选', NULL, 0, 1, 1, 'string', 255, 0, NULL, 'id', 'sys_depart', 'depart_name', 'list_multi', '', 200, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 41, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('a03dabbc391a6bc12934598ef05ef598', 'fafa347903804e89acc7c63e4ab3244c', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, NULL, NULL, '2024-10-09 20:52:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('a047f542fc3f1eb833593dfffdee5d5d', '553a4172fde446419cb602dc70f9ee67', 'popback', 'popback', NULL, 0, 1, 1, 'string', 100, 0, NULL, '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 22, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('a11aa752911377c705e9b8c4d43223f1', '1848200093202231297', 'anneal_end_time', '退火结束时间', NULL, 0, 1, 1, 'Datetime', 32, 0, '', '', '', '', 'datetime', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 15, 'admin', '2024-10-23 17:44:03', '2024-10-23 17:41:50', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('a13b776f8391e7b94a7e32be2f72a490', '97283326c7384df28959e8e9a9f5013f', 'end_date', '实验结束日期', NULL, 0, 1, 1, 'Datetime', 32, 0, '', '', '', '', 'datetime', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 15, 'admin', '2024-11-13 23:58:40', '2024-10-12 17:05:30', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('a13b776f8391e7b94a7e32be2f72a490', '97283326c7384df28959e8e9a9f5013f', 'end_date', '实验结束日期', NULL, 0, 1, 1, 'Datetime', 32, 0, '', '', '', '', 'datetime', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 15, 'admin', '2024-12-05 14:50:53', '2024-10-12 17:05:30', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('a1a2d49b35c185df9f9e149b290aa277', '56efb74326e74064b60933f6f8af30ea', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('a1b7265afe14e374f12e991c0dc07eb3', '8a31140f10a9417495ff2fff77deab55', 'scene', '场景', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, NULL, NULL, '2024-09-11 16:44:20', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('a1f5daba36f536e7acf6a939826183b0', 'fb19fb067cd841f9ae93d4eb3b883dc0', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 0, NULL, NULL, '2019-03-23 11:39:48', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6425,7 +6456,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('b08a14c91a4805f2e62ed7e8a54a1ade', '1853632592350912514', 'review_result', '评审结果', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 9, 'admin', '2024-11-07 15:19:54', '2024-11-05 10:57:04', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('b0a06bdbefd304d81a1838d8d94deda9', '4b556f0168f64976a3d20bfb932bc798', 'name', '用户名', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, NULL, NULL, '2019-04-12 23:38:28', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('b0a2c8d21782830ec6a2d16cc1231328', '402881e6760269a20176026d25650002', 'punch_time', '打卡时间', 'punch_time', 0, 1, 1, 'Datetime', 0, 0, NULL, NULL, NULL, NULL, 'date', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'single', NULL, NULL, 4, NULL, NULL, '2020-11-26 10:41:17', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('b0a96ad3d133d304cf9609c780bfa91f', '1846024836387282946', 'test_end_time', '测试结束时间', 'radiation_end_time', 0, 1, 1, 'Datetime', 32, 0, '', '', '', '', 'datetime', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 15, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:22:09', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('b0a96ad3d133d304cf9609c780bfa91f', '1846024836387282946', 'test_end_time', '测试结束时间', 'radiation_end_time', 0, 1, 1, 'Datetime', 32, 0, '', '', '', '', 'datetime', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 15, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:22:09', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('b0b1cf271dd6b221a902da2d2f8f889a', 'e9faf717024b4aae95cff224ae9b6d97', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2019-07-03 18:23:49', '2019-07-03 18:22:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('b0bec45e041a384f288636748e6375b5', '1864324542325420034', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 5, 'admin', '2024-12-05 11:03:29', '2024-12-04 23:03:03', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('b0dfd0f0c36ee46ef483c0c225956ac5', '402881e6760269a201760269a2af0000', 'checkbox', 'checkbox', NULL, 0, 1, 1, 'string', 32, 0, '', 'sex', '', '', 'checkbox', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 10, NULL, NULL, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6443,6 +6474,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('b5269f7dde6929be973370267ddcb09e', '1857642795707228161', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, 'admin', '2024-11-16 12:36:04', '2024-11-16 12:32:11', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('b57b4eb48258fdff95303b971b348304', '1848201478455013377', 'device_mode', '器件型号', 'name', 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 8, 'admin', '2024-10-23 16:53:48', '2024-10-21 11:15:45', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('b5cfd3c9691a884430f3d9cd5ecb211f', 'e2faf977fdaf4b25a524f58c2441a51c', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), +('b612379d4819d736159ae5a1891d60d2', '1846024836387282946', 'test_standards_id', '测试标准ID', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 24, NULL, NULL, '2024-12-05 14:21:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('b6874a05734cad8bd96ffd2f31f1ebca', '402860816bff91c0016bff91c7010001', 'create_by', '创建人', 'create_by', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 7, 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('b711815ab01297caf80374f80e6cb5ec', '1864324542325420034', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-12-05 11:03:29', '2024-12-04 23:03:03', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('b733fa73519603b22d401fabbf9e9781', '402860816bff91c0016bff91c0cb0000', 'hiredate', '入职时间', 'hiredate', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 5, 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6450,7 +6482,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('b7a1243aaa712e2c152c0c7a46f88683', '402860816bff91c0016bff91d8830007', 'age', '年龄', 'age', 0, 1, 1, 'int', 10, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 5, 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('b7b311cf4483bd10a93a40891cc39a77', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'has_child', '是否有子节点', NULL, 0, 1, 1, 'string', 3, 0, '', 'yn', '', '', 'list', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 11, NULL, NULL, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('b878237aa10fb456eb1dd3157ea153d6', 'fafa347903804e89acc7c63e4ab3244c', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, NULL, NULL, '2024-10-09 20:52:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('b87889350764762cba1eda4c2e11916c', '1846024836387282946', 'experiment_id', '试验ID', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 13, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('b87889350764762cba1eda4c2e11916c', '1846024836387282946', 'experiment_id', '试验ID', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 13, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('b90c421ad05911a6a35156a337f54e54', '5a46eebe3b5f48b3b21852858a8c533f', 'name', '名称', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 12, 'admin', '2024-09-18 17:23:07', '2024-08-30 10:35:44', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('b91258e3dc15b28c2e3f0d934e6e27e8', 'fb7125a344a649b990c12949945cb6c1', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 0, NULL, NULL, '2019-03-26 19:01:52', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('b92572ae142f8dd5f2ac02fb45e6b2c1', 'e2faf977fdaf4b25a524f58c2441a51c', 'name', '用户名', NULL, 0, 1, 1, 'string', 32, 0, '', 'realname,username', 'report_user', 'name,account', 'sel_search', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6472,12 +6504,12 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('bc7df6f3cf49f670c36a3de25e25e715', '402860816bff91c0016bff91d2810005', 'order_no', '序号', 'order_no', 0, 1, 1, 'int', 10, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 9, 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('bcc1f7cfabd386311a3c21e588022338', '553a4172fde446419cb602dc70f9ee67', 'fwb', '富文本', NULL, 0, 1, 1, 'Text', 0, 0, NULL, '', '', '', 'umeditor', '', 120, '', '0', '', '', 0, 1, 0, 0, 'single', '', '', 26, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('bd39cb237049ac60218b3f4dd844f30c', '402860816bff91c0016bffa220a9000b', 'current_address', '现居住地', 'current_address', 0, 1, 1, 'string', 200, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 30, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('bd84b7391bacde97c44cb7db057ab708', '1846024836387282946', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('bd84b7391bacde97c44cb7db057ab708', '1846024836387282946', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('bde81809057b1a4c974fa0f090501fdd', '402860816aa5921f016aa5dedcb90009', 'update_by', '更新人', 'update_by', 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'group', '', '', 4, 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('be3f8c157d8a1b40e6f7b836552a8095', '8994f2817b5a45d9890aa04497a317c5', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 2, NULL, NULL, '2019-03-23 11:39:16', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('be47c500a84ca5aa2400481cd5bd856d', '1864323864098074625', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-12-05 00:43:34', '2024-12-04 23:00:21', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('be5eeda7d51dace73d3818bd8467b53b', '402860816bff91c0016bff91c0cb0000', 'update_time', '更新时间', 'update_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 15, 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('beb7787277cdf44ea878ea836ba23ae3', '1846024836387282946', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('beb7787277cdf44ea878ea836ba23ae3', '1846024836387282946', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('bec3082fc5f0f194be5cd72cc2866ff4', 'e5464aa8fa7b47c580e91593cf9b46dc', 'wl_name', '物料名字', NULL, 0, 1, 1, 'string', 200, 0, '', 'wl_code', 'air_china_materiel', 'wl_name', 'list', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2019-04-24 17:09:49', '2019-04-24 11:05:10', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('bed0bc67f570613eaa6a1bd8bcaaddcc', '4b556f0168f64976a3d20bfb932bc798', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, NULL, NULL, '2019-04-12 23:38:28', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('bf61aa04c5ca77ad54c764f8f8b2bdec', '402860816bff91c0016bff91d8830007', 'update_by', '更新人', 'update_by', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 12, 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6500,7 +6532,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('c4d2a131f7defb3ff4bc78ec9b534b47', '1848201478455013377', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-10-23 16:53:48', '2024-10-21 11:15:45', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('c4d71528f3f45661b1a87841b7256204', '402880e5721355dd01721355dd390000', 'order_main_id', '订单ID', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 11, NULL, NULL, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('c52711856d2e81ad1074265833f44328', 'b81de38db24047b497d476516f8a0865', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 1, 'single', '', '', 1, NULL, NULL, '2020-02-24 14:56:07', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('c5399c99bf5d96ee42bca460ee8ed183', '1846024836387282946', 'test_fluence_point', '测试注量点', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 20, NULL, NULL, '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('c5399c99bf5d96ee42bca460ee8ed183', '1846024836387282946', 'test_fluence_point', '测试注量点', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 20, 'admin', '2024-12-05 14:21:26', '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('c596f7f9035c71f9d2d0206d14b0eee8', '402881e6760269a201760269a2af0000', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 4, NULL, NULL, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('c5a61724b3b1fdfd0eb39c361f22bafd', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, NULL, NULL, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('c5dd2fc34ae825ebfced2ec74948654c', '402860816aa5921f016aa5921f480000', 'end_date', '请假结束时间', 'end_date', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 5, 'admin', '2019-05-11 15:31:54', '2019-05-11 14:26:19', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6508,20 +6540,21 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('c60e3a3aecdc5f1561328a3a561bb114', 'fafa347903804e89acc7c63e4ab3244c', 'code', '编号', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 8, NULL, NULL, '2024-10-09 20:52:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('c6730e00df5efd77fedf181df29102de', '402860816bff91c0016bff91c7010001', 'update_by', '更新人', 'update_by', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 9, 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('c6d613ab0dd449b1e6b59d952703e6a5', 'c256ecba74534bb080ee00d3d00492e0', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, NULL, NULL, '2024-08-30 11:07:23', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('c73267bc9611aab40735c3738154216c', '1829347928200749057', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, 'admin', '2024-11-14 15:31:47', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('c73267bc9611aab40735c3738154216c', '1829347928200749057', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, 'admin', '2024-12-05 14:36:15', '2024-08-30 10:38:28', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('c75a7cb0a21958aa7ca5442f66019669', 'e9faf717024b4aae95cff224ae9b6d97', 'depart', '所属部门', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, 'admin', '2019-07-03 18:23:49', '2019-07-03 18:22:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('c762d5be02aa83315dd649e41bc9769c', 'c452d7508f38476da0c80311b1e1d329', 'experiment_id', '试验ID', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2024-11-21 10:33:05', '2024-08-22 17:02:38', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('c772ed9cbe2d1dc69e9ffa73d3487021', '4b556f0168f64976a3d20bfb932bc798', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, NULL, NULL, '2019-04-12 23:38:28', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), +('c7a02e232e3ef6d58c4e58791a9befde', '1864545872732856322', 'experiment_id', '试验ID', 'experiment_id', 0, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '1', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 6, 'admin', '2024-12-05 13:44:13', '2024-12-05 13:42:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('c7e0a5c6e23e99ac9af5d3fcc33323f7', 'b493c5fd4fa64a3a84e74ee171763e37', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, NULL, NULL, '2021-06-07 18:13:37', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), -('c7f0b76ab0decc03a10d5d8e8d7329bf', '8b88392f44b64b8e92ddccac596247f0', 'code', '标准代号', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 7, 'admin', '2024-09-18 19:21:22', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('c7f0b76ab0decc03a10d5d8e8d7329bf', '8b88392f44b64b8e92ddccac596247f0', 'code', '标准代号', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 7, 'admin', '2024-12-05 14:13:20', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('c7f1907e8e7aa373c6829263ca6322d0', 'a2ca0c7297a8491ca849fc1a06c9efbf', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 1, 'single', '', '', 1, 'admin', '2021-01-24 14:39:35', '2021-01-24 14:38:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('c8027cf4f2483042445c89ba86c4e51f', '402880e5721355dd01721355dd390000', 'zong_price', '单品总价', NULL, 0, 1, 1, 'double', 10, 3, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 10, NULL, NULL, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('c84ee218b6ed1551440ec594a3fa8e53', '3b6eab3feffc4cd6bcf28cf01decebd7', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2024-12-05 11:43:17', '2024-08-30 10:25:23', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('c91b697b1bcd2be943fc746e2660bc9e', '402860816bff91c0016bff91d2810005', 'real_name', '姓名', 'real_name', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 3, 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('c962b89c893e2b8cf1a12c678ba12962', '553a4172fde446419cb602dc70f9ee67', 'zdbdx', '字典表单选', NULL, 0, 1, 1, 'string', 255, 0, NULL, 'id', 'sys_depart', 'depart_name', 'radio', '', 200, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 39, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('c9b698d3f75aa780ee1eb67ef090b15b', '73162c3b8161413e8ecdca7eb288d0c9', 'wl_code', '物料编码', NULL, 0, 1, 1, 'string', 200, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('ca03585bbdb80149ba98ea0a22857cae', '1846024836387282946', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', NULL, NULL, 0, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('ca4ce66c5f5e936b173473d6a14259b8', '97283326c7384df28959e8e9a9f5013f', 'radiation_source_type', '辐射源类型', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 10, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('ca03585bbdb80149ba98ea0a22857cae', '1846024836387282946', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', NULL, NULL, 0, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('ca4ce66c5f5e936b173473d6a14259b8', '97283326c7384df28959e8e9a9f5013f', 'radiation_source_type', '辐射源类型', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 10, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('ca732db48560f8fe7723f02c886c247c', '1848200093202231297', 'measurement_rate', '计量率', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 7, 'admin', '2024-10-23 17:44:03', '2024-10-21 11:10:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('cad8d8637bb2d193038d0e9e789d464a', '1864485221946716162', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', NULL, NULL, 0, 'admin', '2024-12-05 09:44:10', '2024-12-05 09:41:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('caefd970229d43306e568b44f6688e51', '1857015207720738817', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, 'admin', '2024-11-14 19:48:08', '2024-11-14 18:58:22', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6532,9 +6565,10 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('cb883a4932f0fd3a80fcf27efd7d1f2d', 'f9fb8bee1a64472889d077c757b9acc7', 'sdf', 'sdf', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 11, 'admin', '2021-08-17 13:58:15', '2021-08-17 13:58:02', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('cc1ddc1304d3eb5d9a189da0a509ccd0', '32f75e4043ef4070919dbd4337186a3d', 'create_by', '创建人登录名称', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, 'admin', '2019-04-11 10:15:32', '2019-03-27 15:54:49', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('ccda49a8cea079c34f0034361d058c08', '09fd28e4b7184c1a9668496a5c496450', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2022-05-07 19:05:56', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), -('cceb991ecb55ab29de9ecbbc5d9603fb', '1846024836387282946', 'test_metering_point', '测试计量点', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 19, NULL, NULL, '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('cceb991ecb55ab29de9ecbbc5d9603fb', '1846024836387282946', 'test_metering_point', '测试计量点', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 19, 'admin', '2024-12-05 14:21:26', '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('ccf2f331af46ddc411b8039dd187621b', '4028839a6de2ebd3016de2ebd3870000', 'price', '单价', 'price', 0, 1, 1, 'double', 10, 2, NULL, NULL, NULL, NULL, 'text', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'group', NULL, NULL, 10, NULL, NULL, '2019-10-19 15:29:30', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('ce146073ad7ca7c89dc6949ab9c52f8e', 'ca19150a847245dab3d070aaf2c82586', 'auditor', '审核员', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 10, 'admin', '2024-11-16 20:55:12', '2024-10-23 22:54:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('cd6c8817909b32bb4b9b4fd003b14bf4', '1864545872732856322', 'equipment_model', '设备型号', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 9, 'admin', '2024-12-05 13:44:14', '2024-12-05 13:42:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('ce146073ad7ca7c89dc6949ab9c52f8e', 'ca19150a847245dab3d070aaf2c82586', 'auditor', '审核员', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 10, 'admin', '2024-12-05 14:40:09', '2024-10-23 22:54:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('ce2cee81b83a1cb082c702a78f115240', '1848200093202231297', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 5, 'admin', '2024-10-23 17:44:03', '2024-10-21 11:10:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('ce6309ab809a3417348fa56646bcae01', '1848200093202231297', 'radiation_source', ' 辐照源', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 6, 'admin', '2024-10-23 17:44:03', '2024-10-21 11:10:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('cee3c1dbf67b4a7d9626b8032897a4c7', '402860816bff91c0016bff91d8830007', 'employee_id', '员工ID', 'employee_id', 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', 'oa_employee_info', 'id', 2, 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6551,8 +6585,8 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('d2551b70dc96a45a73b304bf755a996f', '402860816bff91c0016bff91d8830007', 'workplace', '工作单位', 'workplace', 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 6, 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('d29c832c41084ad6eafb1b9ae6259c83', '722c27169ad44f689c5885ca586b248f', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2024-11-13 17:24:13', '2024-08-21 16:19:14', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('d29dcdba14ea61808391fff2d927efea', '402860816bff91c0016bff91c0cb0000', 'work_summary', '工作总结', 'work_summary', 0, 1, 1, 'Text', 65535, 0, '', '', '', '', 'textarea', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 10, 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('d2c7e0d3d17aa45d228f556ec567c0b6', '1846024836387282946', 'annealing_duration', '退火时长', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 21, NULL, NULL, '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('d3b407e4118ab4dcb4a6cd88a6f78107', '97283326c7384df28959e8e9a9f5013f', 'irradiation_board', '辐照板', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 17, 'admin', '2024-11-13 23:58:40', '2024-10-12 23:59:31', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('d2c7e0d3d17aa45d228f556ec567c0b6', '1846024836387282946', 'annealing_duration', '退火时长', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 21, 'admin', '2024-12-05 14:21:26', '2024-10-22 21:58:40', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('d3b407e4118ab4dcb4a6cd88a6f78107', '97283326c7384df28959e8e9a9f5013f', 'irradiation_board', '辐照板', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 17, 'admin', '2024-12-05 14:50:53', '2024-10-12 23:59:31', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('d3ba5f990e14f9a1a0bbf6aa4cfa26dc', '56efb74326e74064b60933f6f8af30ea', 'xd_date', '下单时间', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('d3daecbaed06b7b29d13765ed3b248a2', '1857642795707228161', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 2, 'admin', '2024-11-16 12:36:04', '2024-11-16 12:32:11', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('d47afc6107d92ba304864412a4f77a55', '1864324542325420034', 'sample_name', '样品名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 12, NULL, NULL, '2024-12-05 11:03:29', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6566,7 +6600,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('d53e70411c206efecb8dcd00174e907c', '62e29cdb81ac44d1a2d8ff89851b853d', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, NULL, NULL, '2019-05-11 14:01:14', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('d5df0a35352ee960053686e959e9084b', '1acb6f81a1d9439da6cc4e868617b565', 'wl_unit', '计量单位', NULL, 0, 1, 1, 'string', 100, 0, '', 'air_china_unit', '', '', 'list_multi', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('d63728ff946b5fa207249af871ef3114', '2bed5edf282d49fb9281145944d924a1', 'parameter', '参数', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 7, NULL, NULL, '2024-09-18 20:45:37', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('d6af1d51a9e2349253f6460613c58943', '1846024836387282946', 'comment', '备注', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 10, 'admin', '2024-10-22 21:58:40', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('d6af1d51a9e2349253f6460613c58943', '1846024836387282946', 'comment', '备注', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 10, 'admin', '2024-12-05 14:21:26', '2024-10-15 11:06:33', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('d6e4e6a429759bda9252bab4cb6aee3b', '1853426743397425154', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', NULL, NULL, 0, 'admin', '2024-11-14 15:25:22', '2024-11-04 21:19:05', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('d6fad89f4f26d733291863c2dfbc5945', '27fc5f91274344afa7673a732b279939', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, 'admin', '2019-07-01 16:28:20', '2019-07-01 16:26:42', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('d7082454dac60103fdda3e00b6557d39', '402880eb71d52dc30171d52dc3a10000', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 9, NULL, NULL, '2020-05-02 19:37:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6584,8 +6618,8 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('da1ad907c82d92e7b6bb4db2893fd8c1', 'ea0a86437fd843c68fb47c3e0fc537c9', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2024-09-19 15:08:35', '2024-08-30 10:31:36', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('da3532953a911dac857610abfd01ceeb', '1853632592350912514', 'review_detail', '评审详情(json大字段)', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 8, 'admin', '2024-11-07 15:19:54', '2024-11-05 10:57:04', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('da397534e84567b4f94cca10b70b2d52', '553a4172fde446419cb602dc70f9ee67', 'zddtjxl', '字典表带条件下拉', NULL, 0, 1, 1, 'string', 255, 0, NULL, 'username', 'sys_user where username like \'%a%\'', 'realname', 'list', '', 200, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 42, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('da54f5067d6e2ffa02cf2fe7a83c2e04', '1829347928200749057', 'condition_b', '条件B', NULL, 0, 1, 1, 'string', 512, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 12, NULL, NULL, '2024-11-14 15:31:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('da7b1966e505c4eed727ea2028165529', '97283326c7384df28959e8e9a9f5013f', 'type', '试验类型', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('da54f5067d6e2ffa02cf2fe7a83c2e04', '1829347928200749057', 'condition_b', '条件B', NULL, 0, 1, 1, 'string', 512, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 12, 'admin', '2024-12-05 14:36:15', '2024-11-14 15:31:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('da7b1966e505c4eed727ea2028165529', '97283326c7384df28959e8e9a9f5013f', 'type', '试验类型', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 8, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('db11e7fe2a76680e502007ad82fc08b9', '402881e6760269a20176026d25650002', 'name', '姓名', 'name', 0, 1, 1, 'string', 30, 0, NULL, NULL, NULL, NULL, 'text', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'single', NULL, NULL, 2, NULL, NULL, '2020-11-26 10:41:17', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('db1fb3e12385cb967b63420cfe97cde6', '402860816bff91c0016bff91cda80003', 'employee_id', '员工ID', 'employee_id', 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', 'oa_employee_info', 'id', 2, 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('db518071f3d42832d13a5132f82af9c2', '553a4172fde446419cb602dc70f9ee67', 'zddtjduox', '字典表带条件多选', NULL, 0, 1, 1, 'string', 255, 0, NULL, 'username', 'sys_user where username like \'%a%\'', 'realname', 'checkbox', '', 200, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 44, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6603,15 +6637,16 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('de3a8a6b042b1821b3dcbd236fd82174', '402881e6760269a201760269a2af0000', 'pic', '图片', NULL, 0, 1, 1, 'string', 1000, 0, '', '', '', '', 'image', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 14, NULL, NULL, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('dec74e7fe09a525cda36efd37e6c4dca', '553a4172fde446419cb602dc70f9ee67', 'zddtjxldx', '字典表带条件下拉多选', NULL, 0, 1, 1, 'string', 255, 0, NULL, 'username', 'sys_user where username like \'%a%\'', 'realname', 'list_multi', '', 200, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 45, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('dedb920a5e876e27eb144464209ebe1e', '27fc5f91274344afa7673a732b279939', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 6, 'admin', '2019-07-01 16:28:20', '2019-07-01 16:26:42', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), +('dedf60320ae1a56af0d2f5ffa5a665c3', 'ca19150a847245dab3d070aaf2c82586', 'memo', '审批意见', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 15, NULL, NULL, '2024-12-05 14:40:09', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('df489194c6008f3bd21b2c1c11fde337', 'fb19fb067cd841f9ae93d4eb3b883dc0', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 2, NULL, NULL, '2019-03-23 11:39:48', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('dfbc6035d0a595ead66a6c14f0a3b3c4', '8b88392f44b64b8e92ddccac596247f0', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2024-09-18 19:21:22', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('dfbc6035d0a595ead66a6c14f0a3b3c4', '8b88392f44b64b8e92ddccac596247f0', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2024-12-05 14:13:20', '2024-08-30 10:37:47', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('dff586dae2bf4587a0b438cdbba0a5b9', 'b493c5fd4fa64a3a84e74ee171763e37', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 1, 'single', '', '', 1, NULL, NULL, '2021-06-07 18:13:37', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('e02d3dfefe633271b7ef2ceb5245b206', '5a46eebe3b5f48b3b21852858a8c533f', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2024-09-18 17:23:07', '2024-08-30 10:35:44', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('e034de6d92b12ab727f279f67916d3c0', '1846024929844764674', 'comment', '备注', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 10, 'admin', '2024-12-05 11:23:14', '2024-10-15 11:06:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('e09b191e3c37f9c89ae2192c75220b89', 'b81de38db24047b497d476516f8a0865', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 6, NULL, NULL, '2020-02-24 14:56:08', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('e0c5d6e483897d5c4e7894dc66dd1aff', '32feeb502544416c9bf41329c10a88f4', 'bpm_status', '流程状态', NULL, 0, 1, 1, 'string', 2, 0, '', 'bpm_status', '', '', 'list', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, 'admin', '2019-08-23 20:03:40', '2019-07-02 18:23:58', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('e16371a7c9581e67f6353e7426ab7e8a', '3b6eab3feffc4cd6bcf28cf01decebd7', 'name', '名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2024-12-05 11:43:17', '2024-08-30 10:25:23', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('e19b0425630e646d559a930f1085b69f', 'ca19150a847245dab3d070aaf2c82586', 'description', '偏置原理说明', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, 'admin', '2024-11-16 20:55:12', '2024-10-23 22:54:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('e19b0425630e646d559a930f1085b69f', 'ca19150a847245dab3d070aaf2c82586', 'description', '偏置原理说明', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, 'admin', '2024-12-05 14:40:09', '2024-10-23 22:54:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('e1a6bd4c18f919a2829120780da24b07', '1857642795707228161', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-11-16 12:36:04', '2024-11-16 12:32:11', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('e24de426223dc0271a55eccc1d5457d0', '73162c3b8161413e8ecdca7eb288d0c9', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('e27813ea2b72f4723f2a4e015b7ca832', '1848200093202231297', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 3, 'admin', '2024-10-23 17:44:03', '2024-10-21 11:10:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6636,20 +6671,21 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('e85295979d84bde27615a008d8bbadf1', '3b5e18da618247539481816995b6bf9f', 'sex', '性别', NULL, 0, 1, 1, 'string', 32, 0, '', 'sex', '', '', 'list', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('e878e70574d0d6180c2f6f0d281c9262', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'pid', '父级节点', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 0, 0, 'single', '', '', 10, NULL, NULL, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('e88d328af34dd8a17f51437c52b68a2d', '402860816bff91c0016bff91cfea0004', 'create_by', '创建人', 'create_by', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 9, 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('e8b166ced881e94e8eb48508b55281c3', '97283326c7384df28959e8e9a9f5013f', 'supervisor', '试验负责人', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 13, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('e8b166ced881e94e8eb48508b55281c3', '97283326c7384df28959e8e9a9f5013f', 'supervisor', '试验负责人', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 13, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('e983ddf3326814827ba99789a6032bb6', '1853632592350912514', 'experiment_id', '实验ID', 'experiment_id', 0, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '1', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 6, 'admin', '2024-11-07 15:19:54', '2024-11-05 10:57:04', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('e99cc08f4d88dd8f788399db8d448ee8', '62e29cdb81ac44d1a2d8ff89851b853d', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, NULL, NULL, '2019-05-11 14:01:14', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('e9a45935d69f5fd91f0c6880e5e6cfa4', '402881e6760269a20176026d25650002', 'age', '年龄', 'age', 0, 1, 1, 'int', 10, 0, NULL, NULL, NULL, NULL, 'text', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'single', NULL, NULL, 8, NULL, NULL, '2020-11-26 10:41:17', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('e9b782461fc66dbc77df0400600868f7', '553a4172fde446419cb602dc70f9ee67', 'riqi', '日期', NULL, 0, 1, 1, 'Date', 50, 0, NULL, '', '', '', 'date', '', 120, '', '0', '', '', 1, 1, 1, 0, 'group', '', '', 13, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('ea11fdd86f547fb8c9379844083b2d99', '1857015207720738817', 'document_title', '文档标题', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 8, 'admin', '2024-11-14 19:48:08', '2024-11-14 18:58:22', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('ea3ce70335eca6a5a21b3faf02b1b8da', '1829347928200749057', 'room_anneal_temperature', '室温退火温度', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 17, NULL, NULL, '2024-12-05 14:36:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('ea3d75d80deacf255da2c79713273ee0', 'c452d7508f38476da0c80311b1e1d329', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, 'admin', '2024-11-21 10:33:05', '2024-08-22 17:02:38', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('ea644c4c208739640933ba6e568045c1', 'e2faf977fdaf4b25a524f58c2441a51c', 'ruz_date', '入职时间', NULL, 0, 1, 1, 'Datetime', 32, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('ea749346b5eb9e70df2058ade2b0bbfa', '402881e6760269a201760269a2af0000', 'fuwenb', '富文本', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'umeditor', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 17, NULL, NULL, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('ea7841cbb321919b1178185e08577833', '97283326c7384df28959e8e9a9f5013f', 'status', '状态', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 14, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('ea7841cbb321919b1178185e08577833', '97283326c7384df28959e8e9a9f5013f', 'status', '状态', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 14, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('ea891a65f840278641a5b7177653f43e', '1864485221946716162', 'offset_condition', '偏执条件', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 10, 'admin', '2024-12-05 09:44:10', '2024-12-05 09:41:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('ea96d1c33f0f0d7245045e70a5793257', '402860816bff91c0016bffa220a9000b', 'current_postcode', '现居住地邮编', 'current_postcode', 0, 1, 1, 'string', 10, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 31, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('ead6475cc8537221a173b7af1ed55de6', '1853426743397425154', 'device_type', '器件类型', 'source', 0, 1, 1, 'string', 1024, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 6, 'admin', '2024-11-14 15:25:22', '2024-11-04 21:19:05', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), -('eb01ad9f18272c642cf6b247d32c77ba', '97283326c7384df28959e8e9a9f5013f', 'name', '名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'group', '', '', 7, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('eb01ad9f18272c642cf6b247d32c77ba', '97283326c7384df28959e8e9a9f5013f', 'name', '名称', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 1, 1, 1, 0, 'group', '', '', 7, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('eb551c826bf8c9352f98c930fde47089', '1864323864098074625', 'sequence_year', '序列年', NULL, 0, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '1', '', '', 0, 1, 1, 0, 'single', '', '', 7, 'admin', '2024-12-05 00:43:34', '2024-12-05 00:19:46', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('eb67ed50019de1dc3ad5ec36712899a3', '1857015207720738817', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', NULL, NULL, 0, 'admin', '2024-11-14 19:48:08', '2024-11-14 18:58:22', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('ebc41362681919cc680fcc58bf87fdcb', '1acb6f81a1d9439da6cc4e868617b565', 'price', '单价', NULL, 0, 1, 1, 'double', 10, 2, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 12, 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6675,7 +6711,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('f0967fd139b440f79f21248bf4e4a209', 'd3ae1c692b9640e0a091f8c46e17bb01', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, NULL, NULL, '2019-07-24 14:47:30', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('f0a453930aa16ca32f2e3be860bfe542', '402860816bff91c0016bffa220a9000b', 'education', '学历', 'education', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 14, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('f12753b4a3815697a72017a7436fe733', 'e2faf977fdaf4b25a524f58c2441a51c', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('f12ee7ab50c611ebb95ab3f235bee908', '97283326c7384df28959e8e9a9f5013f', 'sample_info', '样品信息', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 16, 'admin', '2024-11-13 23:58:40', '2024-10-12 23:59:31', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('f12ee7ab50c611ebb95ab3f235bee908', '97283326c7384df28959e8e9a9f5013f', 'sample_info', '样品信息', NULL, 0, 1, 1, 'Text', 0, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 16, 'admin', '2024-12-05 14:50:53', '2024-10-12 23:59:31', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('f18d62873d180464948e1a74dc440da1', '5a46eebe3b5f48b3b21852858a8c533f', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 1, 'admin', '2024-09-18 17:23:07', '2024-08-30 10:35:44', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('f1ab7d3b55ade57eeac6c55b32ce813a', '1acb6f81a1d9439da6cc4e868617b565', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('f1c7fde21f26c7ed64a0ef1095900c52', '4028318169e81b970169e81b97650000', 'request_type', '请求类型', 'request_type', 0, 1, 1, 'string', 10, 0, NULL, NULL, NULL, NULL, 'text', NULL, 120, NULL, '0', NULL, NULL, 0, 1, 1, 0, 'group', NULL, NULL, 11, NULL, NULL, '2019-04-04 19:28:36', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6697,7 +6733,7 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('f6f8aed87ec73994f6a12abbc079dbb1', '402860816bff91c0016bffa220a9000b', 'update_by', '更新人', 'update_by', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 41, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('f7332af7586c83c87f7b9ea144a5292d', '62e29cdb81ac44d1a2d8ff89851b853d', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, NULL, NULL, '2019-05-11 14:01:14', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('f76719783433487f4710232e2ae0e521', '402860816bff91c0016bff91cfea0004', 'id', 'id', 'id', 1, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'group', '', '', 1, 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('f78046356a7a0b8caadc38b88ed7c0b7', 'ca19150a847245dab3d070aaf2c82586', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2024-11-16 20:55:12', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('f78046356a7a0b8caadc38b88ed7c0b7', 'ca19150a847245dab3d070aaf2c82586', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2024-12-05 14:40:09', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('f7b8f066c5476766ae8fe4b92a31249b', '360542df1f4146ac9dc29659dbd69703', 'experiment_id', '试验ID', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, NULL, NULL, '2024-08-22 16:59:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('f7dbc512109bcb78f72ff1c4b7995634', '497144e626e84545b56f151c9f4d6e9e', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, NULL, NULL, '2024-08-30 10:42:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('f7e7eb84ddc34d7e09d10af213ac6667', '402860816bff91c0016bff91d2810005', 'create_time', '创建时间', 'create_time', 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'date', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 11, 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6716,16 +6752,17 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('f95d2cbefd25444909c83aaf8c4f72fb', '402860816bff91c0016bff91ca7e0002', 'memo', '备注', 'memo', 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 7, 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('fa3a12d7abf72b23afe425f8dbd57f86', '1acb6f81a1d9439da6cc4e868617b565', 'size_type', '尺码类型', NULL, 0, 1, 1, 'string', 2, 0, '', 'air_china_size', '', '', 'list', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('fa3df5f05b59d6c958722b755d29487f', '1864485221946716162', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 1, 'admin', '2024-12-05 09:44:10', '2024-12-05 09:41:32', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('fa63d00bb93a1b5448bfba317e29dfee', '1829347928200749057', 'accelerated_anneal_temperature', '加速退火温度', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 18, NULL, NULL, '2024-12-05 14:36:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('fa8f5a0ba673e0208934567462844eab', '402860816bff91c0016bff91ca7e0002', 'sys_org_code', '组织机构编码', 'sys_org_code', 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 13, 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('fafb32cf7e63bca93bbd70b0a0ea11fc', '758334cb1e7445e2822b60e807aec4a3', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 6, NULL, NULL, '2019-10-18 18:02:09', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('fb522395cd1b07daf0ab7cc8a0c23a9c', '360542df1f4146ac9dc29659dbd69703', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, NULL, NULL, '2024-08-22 16:59:55', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('fb56aeb6b3a5a0a974ef62f34727eea6', '402880e5721355dd01721355dd390000', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 6, NULL, NULL, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('fbf817e3eafd7d8935fc1154640c040c', 'f9fb8bee1a64472889d077c757b9acc7', 'create_time', '创建日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 3, 'admin', '2021-08-17 13:58:15', '2021-08-17 13:57:48', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), -('fc07a91a6355522f5aeec8b43f799fc5', 'ca19150a847245dab3d070aaf2c82586', 'experiment_id', '试验ID', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2024-11-16 20:55:12', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('fc07a91a6355522f5aeec8b43f799fc5', 'ca19150a847245dab3d070aaf2c82586', 'experiment_id', '试验ID', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2024-12-05 14:40:09', '2024-08-22 16:57:24', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('fc22e67ed788a1f0b0fe4639ecb6f4c1', '553a4172fde446419cb602dc70f9ee67', 'ldzje', '联动组件二', NULL, 0, 1, 1, 'string', 255, 0, NULL, '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 30, 'admin', '2022-10-14 09:31:05', '2022-10-13 20:59:58', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('fc55d467102c2c782286f546d7820c3d', '73162c3b8161413e8ecdca7eb288d0c9', 'pid', '父物料', NULL, 0, 1, 1, 'string', 36, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'single', '', '', 9, 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('fc76a3832d232829852cae6c66e44f67', '402860816bff91c0016bffa220a9000b', 'identity_no', '身份证号', 'identity_no', 0, 1, 1, 'string', 20, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 21, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('fc8e193102211e25550f7cc033a0c306', '97283326c7384df28959e8e9a9f5013f', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, 'admin', '2024-11-13 23:58:40', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), +('fc8e193102211e25550f7cc033a0c306', '97283326c7384df28959e8e9a9f5013f', 'id', '主键', NULL, 1, 0, 1, 'string', 36, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 1, 'single', '', '', 0, 'admin', '2024-12-05 14:50:53', '2024-08-22 16:50:51', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('fc923e23a9f55006390a320332b774f6', '2bed5edf282d49fb9281145944d924a1', 'time', '创建时间', NULL, 0, 1, 1, 'Date', 0, 0, '', '', '', '', 'date', '', 120, '', '0', '', '', 1, 1, 1, 0, 'single', '', '', 9, NULL, NULL, '2024-09-18 20:45:37', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('fcd519058d68fa4dab192335602b5d24', '402860816bff91c0016bffa220a9000b', 'real_name', '姓名', 'real_name', 0, 1, 1, 'string', 100, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 1, 1, 0, 'group', '', '', 5, 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('fd0586cae06685959415d9017b2bdf49', '758334cb1e7445e2822b60e807aec4a3', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, NULL, NULL, '2019-10-18 18:02:09', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), @@ -6735,7 +6772,9 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('fd80c2874fb71c8fc7cff81fb3dae0fb', 'feea98637c2144caae7c5d56a815a245', 'create_by', '创建人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 2, NULL, NULL, '2021-10-27 10:24:24', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), ('fdd956d41de1ea5eda30296ca27d1e07', '1848200093202231297', 'anneal_temperature', '退火温度', NULL, 0, 1, 1, 'string', 255, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', NULL, NULL, 9, 'admin', '2024-10-23 17:44:03', '2024-10-21 11:10:15', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('fde00160a5d664effaa4b5552e814e74', 'fb7125a344a649b990c12949945cb6c1', 'sex', '性别', NULL, 0, 1, 1, 'string', 32, 0, '', '', '', '', 'text', '', 120, '', '0', '', '', 0, 1, 1, 0, 'single', '', '', 6, 'admin', '2019-03-26 19:24:11', '2019-03-26 19:01:52', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), -('fde3b676f66c20375136421a11743c3b', 'feea98637c2144caae7c5d56a815a245', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, NULL, NULL, '2021-10-27 10:24:24', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'), +('fde3b676f66c20375136421a11743c3b', 'feea98637c2144caae7c5d56a815a245', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 20, 0, '', '', '', '', 'datetime', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, NULL, NULL, '2021-10-27 10:24:24', 'admin', '', '', '', '', '', NULL, '0', NULL, NULL, '0'); + +INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_field_txt`, `db_field_name_old`, `db_is_key`, `db_is_null`, `db_is_persist`, `db_type`, `db_length`, `db_point_length`, `db_default_val`, `dict_field`, `dict_table`, `dict_text`, `field_show_type`, `field_href`, `field_length`, `field_valid_type`, `field_must_input`, `field_extend_json`, `field_default_value`, `is_query`, `is_show_form`, `is_show_list`, `is_read_only`, `query_mode`, `main_table`, `main_field`, `order_num`, `update_by`, `update_time`, `create_time`, `create_by`, `converter`, `query_def_val`, `query_dict_text`, `query_dict_field`, `query_dict_table`, `query_show_type`, `query_config_flag`, `query_valid_type`, `query_must_input`, `sort_flag`) VALUES ('fe05080f0cd87dd11710b83ce77fefb7', '402881e6760269a20176026d25650002', 'id', '主键ID', 'id', 1, 0, 1, 'string', 50, 0, NULL, NULL, NULL, NULL, 'text', NULL, 120, NULL, '0', NULL, NULL, 0, 0, 0, 1, 'single', NULL, NULL, 1, NULL, NULL, '2020-11-26 10:41:17', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), ('fe2379ae5b20c1b710ef8e83a36fea92', '2bed5edf282d49fb9281145944d924a1', 'sys_org_code', '所属部门', NULL, 0, 1, 1, 'string', 64, 0, '', '', '', '', 'text', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', '', '', 5, NULL, NULL, '2024-09-18 20:45:37', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), ('fe4aa0712940c8e9f4c65c18f35c8108', '1853426743397425154', 'update_time', '更新日期', NULL, 0, 1, 1, 'Datetime', 0, 0, '', '', '', '', 'datetime', '', 200, '', '0', '', '', 0, 0, 0, 0, 'single', NULL, NULL, 4, 'admin', '2024-11-14 15:25:22', '2024-11-04 21:19:05', 'admin', '', '', '', '', '', 'text', '0', NULL, NULL, '0'), @@ -6748,8 +6787,8 @@ INSERT INTO `onl_cgform_field` (`id`, `cgform_head_id`, `db_field_name`, `db_fie ('ffcbf379fffabbd13aa2c22ce565ec12', '79091e8277c744158530321513119c68', 'update_by', '更新人', NULL, 0, 1, 1, 'string', 50, 0, '', '', '', '', 'text', '', 120, NULL, '0', '', '', 0, 0, 0, 0, 'single', '', '', 4, 'admin', '2019-05-11 15:29:47', '2019-05-11 15:27:17', 'admin', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO `onl_cgform_head` (`id`, `table_name`, `table_type`, `table_version`, `table_txt`, `is_checkbox`, `is_db_synch`, `is_page`, `is_tree`, `id_sequence`, `id_type`, `query_mode`, `relation_type`, `sub_table_str`, `tab_order_num`, `tree_parent_id_field`, `tree_id_field`, `tree_fieldname`, `form_category`, `form_template`, `form_template_mobile`, `scroll`, `copy_version`, `copy_type`, `physic_id`, `ext_config_json`, `update_by`, `update_time`, `create_by`, `create_time`, `theme_template`, `is_des_form`, `des_form_code`, `low_app_id`) VALUES -('1829347928200749057', 'irradiation_standards', 1, 4, '辐照标准', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-11-14 15:32:00', 'admin', '2024-08-30 10:38:28', 'normal', 'N', '', NULL), -('1846024836387282946', 'experiment_test_process', 1, 4, '测试过程', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-10-22 21:58:50', 'admin', '2024-10-15 11:06:33', 'normal', 'N', '', NULL), +('1829347928200749057', 'irradiation_standards', 1, 5, '辐照标准', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-12-05 14:36:20', 'admin', '2024-08-30 10:38:28', 'normal', 'N', '', NULL), +('1846024836387282946', 'experiment_test_process', 1, 5, '测试过程', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-12-05 14:21:34', 'admin', '2024-10-15 11:06:33', 'normal', 'N', '', NULL), ('1846024929844764674', 'experiment_radiation_process', 1, 8, '辐照过程', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-12-05 11:23:18', 'admin', '2024-10-15 11:06:55', 'normal', 'N', '', NULL), ('1848200093202231297', 'experiment_anneal_process', 1, 4, '退火过程', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-10-23 17:44:08', 'admin', '2024-10-21 11:10:15', 'normal', 'N', '', NULL), ('1848201478455013377', 'import_record', 1, 4, '三方导入记录', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-10-23 16:53:54', 'admin', '2024-10-21 11:15:45', 'normal', 'N', '', NULL), @@ -6762,6 +6801,7 @@ INSERT INTO `onl_cgform_head` (`id`, `table_name`, `table_type`, `table_version` ('1864324542325420034', 'experiment_sample_info', 1, 5, '试验样品信息', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-12-05 11:03:33', 'admin', '2024-12-04 23:03:03', 'normal', 'N', '', NULL), ('1864484528728928257', 'experiment_irradiation_board', 1, 2, '试验辐照板信息', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-12-05 09:46:43', 'admin', '2024-12-05 09:38:47', 'normal', 'N', '', NULL), ('1864485221946716162', 'experiment_deviation_condition', 1, 2, '试验偏置条件信息', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-12-05 09:46:40', 'admin', '2024-12-05 09:41:32', 'normal', 'N', '', NULL), +('1864545872732856322', 'experiment_deviation_equipment', 1, 2, '试验加偏设备信息', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-12-05 13:44:21', 'admin', '2024-12-05 13:42:32', 'normal', 'N', '', NULL), ('2bed5edf282d49fb9281145944d924a1', 'cnas_test', 1, 2, 'cnas测试参数列表', 'N', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-09-18 20:45:56', 'admin', '2024-09-18 20:45:37', 'normal', 'N', '', NULL), ('2c92808393927efd0193927efd150000', 'experiment_sequence$1', 1, 1, '试验序列', 'Y', 'N', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, 4, 1, '1864323864098074625', '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', NULL, NULL, 'admin', '2024-12-05 00:26:56', 'normal', 'N', '', NULL), ('360542df1f4146ac9dc29659dbd69703', 'experiment_log', 1, 2, '试验日志', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-08-30 10:43:21', 'admin', '2024-08-22 16:59:54', 'normal', 'N', '', NULL), @@ -6771,11 +6811,11 @@ INSERT INTO `onl_cgform_head` (`id`, `table_name`, `table_type`, `table_version` ('5a46eebe3b5f48b3b21852858a8c533f', 'radiate_type', 1, 11, '辐射源类型', 'N', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-09-18 17:23:07', 'admin', '2024-08-30 10:35:44', 'normal', 'N', '', NULL), ('722c27169ad44f689c5885ca586b248f', 'document_library', 1, 5, '知识库', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'demo', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-11-13 17:24:17', 'admin', '2024-08-21 16:19:14', 'normal', 'N', '', NULL), ('8a31140f10a9417495ff2fff77deab55', 'component', 1, 8, '元器件', 'N', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-10-15 11:00:29', 'admin', '2024-08-30 10:18:49', 'normal', 'N', '', NULL), -('8b88392f44b64b8e92ddccac596247f0', 'test_standards', 1, 6, '测试标准', 'N', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-09-18 19:21:28', 'admin', '2024-08-30 10:37:47', 'normal', 'N', '', NULL), -('97283326c7384df28959e8e9a9f5013f', 'experiment', 1, 10, '试验管理', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'demo', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-11-13 23:58:45', 'admin', '2024-08-22 16:50:51', 'normal', 'N', '', NULL), +('8b88392f44b64b8e92ddccac596247f0', 'test_standards', 1, 7, '测试标准', 'N', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-12-05 14:13:26', 'admin', '2024-08-30 10:37:47', 'normal', 'N', '', NULL), +('97283326c7384df28959e8e9a9f5013f', 'experiment', 1, 11, '试验管理', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'demo', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-12-05 14:50:58', 'admin', '2024-08-22 16:50:51', 'normal', 'N', '', NULL), ('c256ecba74534bb080ee00d3d00492e0', 'experiment_user', 1, 2, '试验人员', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-08-30 11:07:31', 'admin', '2024-08-30 11:07:23', 'normal', 'N', '', NULL), ('c452d7508f38476da0c80311b1e1d329', 'experiment_doc', 1, 3, '试验文档', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-11-21 10:33:11', 'admin', '2024-08-22 17:02:38', 'normal', 'N', '', NULL), -('ca19150a847245dab3d070aaf2c82586', 'experiment_report', 1, 5, '试验报告', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-11-16 20:55:21', 'admin', '2024-08-22 16:57:24', 'normal', 'N', '', NULL), +('ca19150a847245dab3d070aaf2c82586', 'experiment_report', 1, 6, '试验报告', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-12-05 14:40:14', 'admin', '2024-08-22 16:57:24', 'normal', 'N', '', NULL), ('ea0a86437fd843c68fb47c3e0fc537c9', 'client', 1, 3, '委托方', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'bdfl_include', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-10-15 11:19:02', 'admin', '2024-08-30 10:31:36', 'normal', 'N', '', NULL), ('fafa347903804e89acc7c63e4ab3244c', 'choice_sample', 1, 2, '样品选择(实验实施)', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 0, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-10-09 20:53:04', 'admin', '2024-10-09 20:52:25', 'normal', 'N', '', NULL), ('fbcd53c12cb642e8985bf3ea4cd0e864', 'document_favorites', 1, 3, '我的收藏文档', 'Y', 'Y', 'Y', 'N', NULL, 'UUID', 'single', NULL, NULL, NULL, NULL, NULL, NULL, 'temp', '1', NULL, 1, NULL, 0, NULL, '{\"reportPrintShow\":0,\"reportPrintUrl\":\"\",\"joinQuery\":0,\"modelFullscreen\":0,\"modalMinWidth\":\"\",\"commentStatus\":0,\"tableFixedAction\":1,\"tableFixedActionType\":\"right\",\"formLabelLengthShow\":0,\"formLabelLength\":null}', 'admin', '2024-11-14 18:04:03', 'admin', '2024-08-30 10:07:18', 'normal', 'N', '', NULL); @@ -6783,9 +6823,11 @@ INSERT INTO `onl_cgform_head` (`id`, `table_name`, `table_type`, `table_version` INSERT INTO `onl_cgform_index` (`id`, `cgform_head_id`, `index_name`, `index_name_old`, `index_field`, `index_type`, `create_by`, `create_time`, `update_by`, `update_time`, `is_db_synch`, `del_flag`) VALUES ('1cbe23c1b639b68b9921d6d5b0c98010', '1857642795707228161', 'experiment_id', NULL, 'experiment_id', 'unique', 'admin', '2024-11-16 12:32:11', 'admin', '2024-11-16 12:36:04', 'Y', 0), ('30dd6b2eec4ee132a3df8370b84a15a5', '1864323864098074625', 'sequence_unique', '', 'sequence_year,sequence_value', 'unique', 'admin', '2024-12-04 23:02:04', 'admin', '2024-12-05 00:43:39', 'Y', 0), +('38c40ebd6b57c3dd32d6f1a91a6fad13', '1864545872732856322', 'experiment_id', NULL, 'experiment_id', 'unique', 'admin', '2024-12-05 13:42:33', 'admin', '2024-12-05 13:44:14', 'Y', 1), ('3f970aa95ecd33828035b3dee87f7a17', '3b6eab3feffc4cd6bcf28cf01decebd7', 'factory_no', NULL, 'factory_no', 'unique', 'admin', '2024-11-19 11:17:04', 'admin', '2024-12-05 11:43:17', 'Y', 0), ('4291fdfd93375be6dc3d93cb7a12223b', '1864485221946716162', 'sequence_unique', NULL, 'sequence_value', 'unique', 'admin', '2024-12-05 09:41:32', 'admin', '2024-12-05 09:44:10', 'N', 1), ('4731e321163d65e0e2cabf52c4a29937', '553a4172fde446419cb602dc70f9ee67', 'index_jycs', NULL, 'jycs', 'unique', 'admin', '2022-10-13 20:59:58', 'admin', '2022-10-14 09:31:05', 'Y', 0), +('53cf9234d26d3f7303709b3892a6962b', '1864545872732856322', 'sequence_unique', NULL, 'sequence_value', 'unique', 'admin', '2024-12-05 13:42:33', 'admin', '2024-12-05 13:44:14', 'N', 1), ('68f9aa276a8ec7f346332aba39c8db1c', '1864484528728928257', 'sequence_unique', NULL, 'sequence_value', 'unique', 'admin', '2024-12-05 09:38:47', 'admin', '2024-12-05 09:41:08', 'N', 1), ('c49d32fea5d73733fb3d6db3edb22971', '1853632592350912514', 'experiment_id', NULL, 'experiment_id', 'unique', 'admin', '2024-11-07 15:19:54', 'admin', '2024-11-07 15:20:01', 'Y', 0), ('e1589c6ef328fd81ac3d3c1133c83010', '1864484528728928257', 'experiment_id', NULL, 'experiment_id', 'unique', 'admin', '2024-12-05 09:38:47', 'admin', '2024-12-05 09:41:08', 'Y', 1), @@ -14547,7 +14589,17 @@ INSERT INTO `sys_log` (`id`, `log_type`, `log_content`, `operate_type`, `userid` ('1864469954403332097', 1, '用户名: zhangru,登录成功!', NULL, 'zhangru', 'zhangru', '114.225.154.112', NULL, NULL, NULL, NULL, 0, NULL, '2024-12-05 08:40:52', NULL, NULL, NULL, 'pc'), ('1864482943579811842', 1, '用户名: admin,登录成功!', NULL, 'admin', '管理员', '58.215.212.230', NULL, NULL, NULL, NULL, 0, NULL, '2024-12-05 09:32:29', NULL, NULL, NULL, 'pc'), ('1864500684160331778', 1, '用户名: admin,登录成功!', NULL, 'admin', '管理员', '58.215.212.230', NULL, NULL, NULL, NULL, 0, NULL, '2024-12-05 10:42:59', NULL, NULL, NULL, 'pc'), -('1864500780218281985', 2, '试验管理-编辑', 3, 'admin', '管理员', '58.215.212.230', 'org.jeecg.modules.database.controller.ExperimentController.edit()', NULL, '[{\"clientName\":\"测试委托方\",\"deviationCondition\":\"[{\\\"key\\\":\\\"c12728d146924964b33fd01fcf70b016\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"sampleNumber\\\":\\\"2,9,8\\\",\\\"offsetCondition\\\":\\\"动态偏置\\\",\\\"load\\\":\\\"111\\\"}]\",\"deviationEquipment\":\"[{\\\"key\\\":\\\"c7e3d693ff5a4c1488c01dc125a7855f\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"equipmentModel\\\":\\\"33\\\",\\\"offsetCondition\\\":\\\"444\\\",\\\"load\\\":\\\"2024-12-04\\\",\\\"equipmentType\\\":\\\"ff\\\"}]\",\"endDate\":\"2024-12-14 08:14:40\",\"experimentNo\":\"NO-20241204160801\",\"experimentUser\":\"1860866034718285825\",\"id\":\"1864227118588194817\",\"irradiationBoard\":\"[{\\\"key\\\":\\\"c091e6c2d49745aeb0720275c9f89221\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"irradiationBoardNumber\\\":\\\"55\\\",\\\"irradiationBoardCode\\\":\\\"1-2-3-4-5\\\",\\\"measurementValidity\\\":\\\"2024-12-04\\\",\\\"sourceArea\\\":\\\"5*5,6*6\\\"},{\\\"key\\\":\\\"4575d16403e344329a22ec1af2103ced\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"irradiationBoardNumber\\\":\\\"5\\\",\\\"irradiationBoardCode\\\":\\\"2\\\",\\\"measurementValidity\\\":\\\"2024-12-04\\\",\\\"sourceArea\\\":\\\"6\\\"}]\",\"name\":\"理化所试验1\",\"radiationSourceType\":\"GFS\",\"sampleInfo\":\"[{\\\"key\\\":\\\"b006521b2772416e8938ed5dc5df36b8\\\",\\\"sampleType\\\":\\\"1\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"sampleBatch\\\":\\\"3\\\",\\\"sampleManufacturer\\\":\\\"4\\\",\\\"sampleImage\\\":\\\"\\\"},{\\\"key\\\":\\\"c543dbe5ab9747469943b0f9a2b7e12e\\\",\\\"sampleType\\\":\\\"1\\\",\\\"sampleModel\\\":\\\"1\\\",\\\"sampleBatch\\\":\\\"1\\\",\\\"sampleManufacturer\\\":\\\"1\\\"}]\",\"startDate\":\"2024-12-04 08:14:50\",\"supervisor\":\"1862644776694280193\",\"type\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-12-05 02:43:21\"},null]', NULL, 40, NULL, '2024-12-05 10:43:21', NULL, NULL, NULL, 'pc'); +('1864500780218281985', 2, '试验管理-编辑', 3, 'admin', '管理员', '58.215.212.230', 'org.jeecg.modules.database.controller.ExperimentController.edit()', NULL, '[{\"clientName\":\"测试委托方\",\"deviationCondition\":\"[{\\\"key\\\":\\\"c12728d146924964b33fd01fcf70b016\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"sampleNumber\\\":\\\"2,9,8\\\",\\\"offsetCondition\\\":\\\"动态偏置\\\",\\\"load\\\":\\\"111\\\"}]\",\"deviationEquipment\":\"[{\\\"key\\\":\\\"c7e3d693ff5a4c1488c01dc125a7855f\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"equipmentModel\\\":\\\"33\\\",\\\"offsetCondition\\\":\\\"444\\\",\\\"load\\\":\\\"2024-12-04\\\",\\\"equipmentType\\\":\\\"ff\\\"}]\",\"endDate\":\"2024-12-14 08:14:40\",\"experimentNo\":\"NO-20241204160801\",\"experimentUser\":\"1860866034718285825\",\"id\":\"1864227118588194817\",\"irradiationBoard\":\"[{\\\"key\\\":\\\"c091e6c2d49745aeb0720275c9f89221\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"irradiationBoardNumber\\\":\\\"55\\\",\\\"irradiationBoardCode\\\":\\\"1-2-3-4-5\\\",\\\"measurementValidity\\\":\\\"2024-12-04\\\",\\\"sourceArea\\\":\\\"5*5,6*6\\\"},{\\\"key\\\":\\\"4575d16403e344329a22ec1af2103ced\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"irradiationBoardNumber\\\":\\\"5\\\",\\\"irradiationBoardCode\\\":\\\"2\\\",\\\"measurementValidity\\\":\\\"2024-12-04\\\",\\\"sourceArea\\\":\\\"6\\\"}]\",\"name\":\"理化所试验1\",\"radiationSourceType\":\"GFS\",\"sampleInfo\":\"[{\\\"key\\\":\\\"b006521b2772416e8938ed5dc5df36b8\\\",\\\"sampleType\\\":\\\"1\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"sampleBatch\\\":\\\"3\\\",\\\"sampleManufacturer\\\":\\\"4\\\",\\\"sampleImage\\\":\\\"\\\"},{\\\"key\\\":\\\"c543dbe5ab9747469943b0f9a2b7e12e\\\",\\\"sampleType\\\":\\\"1\\\",\\\"sampleModel\\\":\\\"1\\\",\\\"sampleBatch\\\":\\\"1\\\",\\\"sampleManufacturer\\\":\\\"1\\\"}]\",\"startDate\":\"2024-12-04 08:14:50\",\"supervisor\":\"1862644776694280193\",\"type\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-12-05 02:43:21\"},null]', NULL, 40, NULL, '2024-12-05 10:43:21', NULL, NULL, NULL, 'pc'), +('1864545437607370753', 1, '用户名: admin,登录成功!', NULL, 'admin', '管理员', '58.215.212.230', NULL, NULL, NULL, NULL, 17, NULL, '2024-12-05 13:40:49', NULL, NULL, NULL, 'pc'), +('1864545647976882177', 4, 'org.springframework.jdbc.BadSqlGrammarException:\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table \'physical-boot.experiment_deviation_equipment\' doesn\'t exist\n### The error may exist in org/jeecg/modules/database/mapper/ExperimentDeviationEquipmentMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, create_by, create_time, update_by, update_time, sys_org_code, experiment_id, sample_type, sample_model, equipment_model, equipment_name, equipment_type, sample_image, measurement_validity FROM experiment_deviation_equipment WHERE (experiment_id = ?)\n### Cause: java.sql.SQLSyntaxErrorException: Table \'physical-boot.experiment_deviation_equipment\' doesn\'t exist\n; bad SQL grammar []', NULL, 'admin', '管理员', '58.215.212.230', '_t=1733377297931&pageNo=1&column=createTime&pageSize=10&order=desc', '/physical/database/experiment/list', 'org.springframework.jdbc.BadSqlGrammarException: \n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table \'physical-boot.experiment_deviation_equipment\' doesn\'t exist\n### The error may exist in org/jeecg/modules/database/mapper/ExperimentDeviationEquipmentMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, create_by, create_time, update_by, update_time, sys_org_code, experiment_id, sample_type, sample_model, equipment_model, equipment_name, equipment_type, sample_image, measurement_validity FROM experiment_deviation_equipment WHERE (experiment_id = ?)\n### Cause: java.sql.SQLSyntaxErrorException: Table \'physical-boot.experiment_deviation_equipment\' doesn\'t exist\n; bad SQL grammar []\n at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:246)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)\n at jdk.proxy2/jdk.proxy2.$Proxy133.selectList(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at jdk.proxy2/jdk.proxy2.$Proxy197.selectList(Unknown Source)\n at com.baomidou.mybatisplus.extension.service.IService.list(IService.java:406)\n at org.jeecg.modules.database.service.impl.ExperimentDeviationEquipmentServiceImpl.getByExperimentId(ExperimentDeviationEquipmentServiceImpl.java:23)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:699)\n at org.jeecg.modules.database.service.impl.ExperimentDeviationEquipmentServiceImpl$$SpringCGLIB$$0.getByExperimentId()\n at org.jeecg.modules.database.service.impl.ExperimentServiceImpl.fetchExperimentDetail(ExperimentServiceImpl.java:71)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:699)\n at org.jeecg.modules.database.service.impl.ExperimentServiceImpl$$SpringCGLIB$$0.fetchExperimentDetail()\n at org.jeecg.modules.database.controller.ExperimentController.lambda$queryPageList$0(ExperimentController.java:87)\n at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)\n at org.jeecg.modules.database.controller.ExperimentController.queryPageList(ExperimentController.java:87)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:751)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:64)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:751)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:751)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:703)\n at org.jeecg.modules.database.controller.ExperimentController$$SpringCGLIB$$0.queryPageList()\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:884)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1081)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:974)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1011)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903)\n at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:527)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)\n at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614)\n at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)\n at io.undertow.websockets.jsr.JsrWebSocketFilter.doFilter(JsrWebSocketFilter.java:172)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61)\n at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108)\n at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66)\n at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108)\n at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66)\n at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458)\n at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373)\n at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90)\n at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83)\n at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387)\n at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at com.alibaba.druid.support.jakarta.WebStatFilter.doFilter(WebStatFilter.java:113)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61)\n at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108)\n at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66)\n at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108)\n at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66)\n at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458)\n at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373)\n at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90)\n at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83)\n at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387)\n at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:352)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:268)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.boot.actuate.web.exchanges.servlet.HttpExchangesFilter.doFilterInternal(HttpExchangesFilter.java:89)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)\n at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)\n at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)\n at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)\n at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)\n at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:117)\n at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)\n at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)\n at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)\n at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)\n at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)\n at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)\n at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)\n at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)\n at io.undertow.servlet.handlers.SendErrorPageHandler.handleRequest(SendErrorPageHandler.java:52)\n at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)\n at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:276)\n at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135)\n at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:132)\n at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)\n at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)\n at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:256)\n at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:101)\n at io.undertow.server.Connectors.executeRootHandler(Connectors.java:393)\n at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:859)\n at org.jboss.threads.ContextHandler$1.runWith(ContextHandler.java:18)\n at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2513)\n at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1538)\n at org.xnio.XnioWorker$WorkerThreadFactory$1$1.run(XnioWorker.java:1282)\n at java.base/java.lang.Thread.run(Thread.java:840)\nCaused by: java.sql.SQLSyntaxErrorException: Table \'physical-boot.experiment_deviation_equipment\' doesn\'t exist\n at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)\n at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)\n at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953)\n at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:371)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3462)\n at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3460)\n at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3460)\n at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:158)\n at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483)\n at jdk.internal.reflect.GeneratedMethodAccessor34.invoke(Unknown Source)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:58)\n at jdk.proxy3/jdk.proxy3.$Proxy326.execute(Unknown Source)\n at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65)\n at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:80)\n at jdk.internal.reflect.GeneratedMethodAccessor73.invoke(Unknown Source)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)\n at jdk.proxy2/jdk.proxy2.$Proxy324.query(Unknown Source)\n at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:65)\n at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:333)\n at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:158)\n at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:110)\n at jdk.internal.reflect.GeneratedMethodAccessor72.invoke(Unknown Source)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)\n at jdk.proxy2/jdk.proxy2.$Proxy323.query(Unknown Source)\n at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:59)\n at jdk.proxy2/jdk.proxy2.$Proxy323.query(Unknown Source)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:154)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:142)\n at jdk.internal.reflect.GeneratedMethodAccessor80.invoke(Unknown Source)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:425)\n ... 168 more\n', NULL, NULL, NULL, '2024-12-05 13:41:39', NULL, NULL, NULL, 'pc'), +('1864545759809609730', 4, 'org.springframework.jdbc.BadSqlGrammarException:\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table \'physical-boot.experiment_deviation_equipment\' doesn\'t exist\n### The error may exist in org/jeecg/modules/database/mapper/ExperimentDeviationEquipmentMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, create_by, create_time, update_by, update_time, sys_org_code, experiment_id, sample_type, sample_model, equipment_model, equipment_name, equipment_type, sample_image, measurement_validity FROM experiment_deviation_equipment WHERE (experiment_id = ?)\n### Cause: java.sql.SQLSyntaxErrorException: Table \'physical-boot.experiment_deviation_equipment\' doesn\'t exist\n; bad SQL grammar []', NULL, 'admin', '管理员', '58.215.212.230', '_t=1733377324605&pageNo=1&column=createTime&pageSize=10&order=desc', '/physical/database/experiment/list', 'org.springframework.jdbc.BadSqlGrammarException: \n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table \'physical-boot.experiment_deviation_equipment\' doesn\'t exist\n### The error may exist in org/jeecg/modules/database/mapper/ExperimentDeviationEquipmentMapper.java (best guess)\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: SELECT id, create_by, create_time, update_by, update_time, sys_org_code, experiment_id, sample_type, sample_model, equipment_model, equipment_name, equipment_type, sample_image, measurement_validity FROM experiment_deviation_equipment WHERE (experiment_id = ?)\n### Cause: java.sql.SQLSyntaxErrorException: Table \'physical-boot.experiment_deviation_equipment\' doesn\'t exist\n; bad SQL grammar []\n at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:246)\n at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)\n at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:92)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:439)\n at jdk.proxy2/jdk.proxy2.$Proxy133.selectList(Unknown Source)\n at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:224)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.executeForMany(MybatisMapperMethod.java:166)\n at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.execute(MybatisMapperMethod.java:77)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy$PlainMethodInvoker.invoke(MybatisMapperProxy.java:148)\n at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:89)\n at jdk.proxy2/jdk.proxy2.$Proxy197.selectList(Unknown Source)\n at com.baomidou.mybatisplus.extension.service.IService.list(IService.java:406)\n at org.jeecg.modules.database.service.impl.ExperimentDeviationEquipmentServiceImpl.getByExperimentId(ExperimentDeviationEquipmentServiceImpl.java:23)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:699)\n at org.jeecg.modules.database.service.impl.ExperimentDeviationEquipmentServiceImpl$$SpringCGLIB$$0.getByExperimentId()\n at org.jeecg.modules.database.service.impl.ExperimentServiceImpl.fetchExperimentDetail(ExperimentServiceImpl.java:71)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:699)\n at org.jeecg.modules.database.service.impl.ExperimentServiceImpl$$SpringCGLIB$$0.fetchExperimentDetail()\n at org.jeecg.modules.database.controller.ExperimentController.lambda$queryPageList$0(ExperimentController.java:87)\n at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)\n at org.jeecg.modules.database.controller.ExperimentController.queryPageList(ExperimentController.java:87)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:751)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:64)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:751)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:751)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:703)\n at org.jeecg.modules.database.controller.ExperimentController$$SpringCGLIB$$0.queryPageList()\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:884)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1081)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:974)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1011)\n at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903)\n at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:527)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)\n at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614)\n at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)\n at io.undertow.websockets.jsr.JsrWebSocketFilter.doFilter(JsrWebSocketFilter.java:172)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61)\n at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108)\n at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66)\n at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108)\n at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66)\n at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458)\n at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373)\n at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90)\n at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83)\n at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387)\n at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at com.alibaba.druid.support.jakarta.WebStatFilter.doFilter(WebStatFilter.java:113)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61)\n at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108)\n at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66)\n at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108)\n at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66)\n at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458)\n at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373)\n at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90)\n at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83)\n at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387)\n at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:352)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:268)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.boot.actuate.web.exchanges.servlet.HttpExchangesFilter.doFilterInternal(HttpExchangesFilter.java:89)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)\n at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)\n at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)\n at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)\n at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)\n at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:117)\n at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)\n at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)\n at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)\n at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)\n at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)\n at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)\n at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)\n at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)\n at io.undertow.servlet.handlers.SendErrorPageHandler.handleRequest(SendErrorPageHandler.java:52)\n at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)\n at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:276)\n at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135)\n at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:132)\n at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)\n at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)\n at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:256)\n at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:101)\n at io.undertow.server.Connectors.executeRootHandler(Connectors.java:393)\n at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:859)\n at org.jboss.threads.ContextHandler$1.runWith(ContextHandler.java:18)\n at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2513)\n at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1538)\n at org.xnio.XnioWorker$WorkerThreadFactory$1$1.run(XnioWorker.java:1282)\n at java.base/java.lang.Thread.run(Thread.java:840)\nCaused by: java.sql.SQLSyntaxErrorException: Table \'physical-boot.experiment_deviation_equipment\' doesn\'t exist\n at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:120)\n at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)\n at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:953)\n at com.mysql.cj.jdbc.ClientPreparedStatement.execute(ClientPreparedStatement.java:371)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3462)\n at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3460)\n at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_execute(FilterEventAdapter.java:434)\n at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_execute(FilterChainImpl.java:3460)\n at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.execute(PreparedStatementProxyImpl.java:158)\n at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:483)\n at jdk.internal.reflect.GeneratedMethodAccessor34.invoke(Unknown Source)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:58)\n at jdk.proxy3/jdk.proxy3.$Proxy326.execute(Unknown Source)\n at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65)\n at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:80)\n at jdk.internal.reflect.GeneratedMethodAccessor73.invoke(Unknown Source)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)\n at jdk.proxy2/jdk.proxy2.$Proxy324.query(Unknown Source)\n at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:65)\n at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:333)\n at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:158)\n at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:110)\n at jdk.internal.reflect.GeneratedMethodAccessor72.invoke(Unknown Source)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)\n at jdk.proxy2/jdk.proxy2.$Proxy323.query(Unknown Source)\n at com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor.intercept(MybatisPlusInterceptor.java:81)\n at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:59)\n at jdk.proxy2/jdk.proxy2.$Proxy323.query(Unknown Source)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:154)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:147)\n at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:142)\n at jdk.internal.reflect.GeneratedMethodAccessor80.invoke(Unknown Source)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:425)\n ... 168 more\n', NULL, NULL, NULL, '2024-12-05 13:42:05', NULL, NULL, NULL, 'pc'), +('1864546556844810241', 2, '试验管理-编辑', 3, 'admin', '管理员', '58.215.212.230', 'org.jeecg.modules.database.controller.ExperimentController.edit()', NULL, '[{\"clientName\":\"测试委托方\",\"deviationCondition\":\"[{\\\"key\\\":\\\"c12728d146924964b33fd01fcf70b016\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"sampleNumber\\\":\\\"2,9,8\\\",\\\"offsetCondition\\\":\\\"动态偏置\\\",\\\"load\\\":\\\"111\\\"}]\",\"deviationEquipment\":\"[{\\\"key\\\":\\\"c7e3d693ff5a4c1488c01dc125a7855f\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"equipmentModel\\\":\\\"33\\\",\\\"offsetCondition\\\":\\\"444\\\",\\\"load\\\":\\\"2024-12-04\\\",\\\"equipmentType\\\":\\\"ff\\\"}]\",\"endDate\":\"2024-12-14 08:14:40\",\"experimentNo\":\"NO-20241204160801\",\"experimentUser\":\"1860866034718285825\",\"id\":\"1864227118588194817\",\"irradiationBoard\":\"[{\\\"key\\\":\\\"c091e6c2d49745aeb0720275c9f89221\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"irradiationBoardNumber\\\":\\\"55\\\",\\\"irradiationBoardCode\\\":\\\"1-2-3-4-5\\\",\\\"measurementValidity\\\":\\\"2024-12-04\\\",\\\"sourceArea\\\":\\\"5*5,6*6\\\"},{\\\"key\\\":\\\"4575d16403e344329a22ec1af2103ced\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"irradiationBoardNumber\\\":\\\"5\\\",\\\"irradiationBoardCode\\\":\\\"2\\\",\\\"measurementValidity\\\":\\\"2024-12-04\\\",\\\"sourceArea\\\":\\\"6\\\"}]\",\"name\":\"理化所试验1\",\"radiationSourceType\":\"GFS\",\"sampleInfo\":\"[{\\\"key\\\":\\\"b006521b2772416e8938ed5dc5df36b8\\\",\\\"sampleType\\\":\\\"1\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"sampleBatch\\\":\\\"3\\\",\\\"sampleManufacturer\\\":\\\"4\\\",\\\"sampleImage\\\":\\\"\\\"},{\\\"key\\\":\\\"c543dbe5ab9747469943b0f9a2b7e12e\\\",\\\"sampleType\\\":\\\"1\\\",\\\"sampleModel\\\":\\\"1\\\",\\\"sampleBatch\\\":\\\"1\\\",\\\"sampleManufacturer\\\":\\\"1\\\"}]\",\"startDate\":\"2024-12-04 08:14:50\",\"supervisor\":\"1862644776694280193\",\"type\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-12-05 05:45:15\"},null]', NULL, 95, NULL, '2024-12-05 13:45:15', NULL, NULL, NULL, 'pc'), +('1864546774181060610', 2, '试验管理-编辑', 3, 'admin', '管理员', '58.215.212.230', 'org.jeecg.modules.database.controller.ExperimentController.edit()', NULL, '[{\"clientName\":\"测试账号\",\"deviationCondition\":\"[{\\\"key\\\":\\\"7fa7c7d5d759471388df9cf780a643a1\\\",\\\"sampleModel\\\":\\\"样品型号\\\",\\\"sampleNumber\\\":\\\"1\\\",\\\"offsetCondition\\\":\\\"1\\\",\\\"load\\\":\\\"1\\\"}]\",\"deviationEquipment\":\"[{\\\"offsetCondition\\\":\\\"11\\\",\\\"equipmentModel\\\":\\\"11\\\",\\\"sampleModel\\\":\\\"样品型号\\\",\\\"key\\\":\\\"fa9fc63a13a044d791e161b5650c4a96\\\",\\\"equipmentType\\\":\\\"1111\\\"}]\",\"endDate\":\"2024-12-05 05:45:49\",\"experimentNo\":\"NO-20241204005126\",\"experimentUser\":\"1842788885145956354\",\"id\":\"1864110227236417538\",\"irradiationBoard\":\"[]\",\"name\":\"测试试验名称11-1\",\"radiationSourceType\":\"HFS\",\"sampleInfo\":\"[{\\\"key\\\":\\\"aaa8e7a4d33a401e953c6ca4fdd5612e\\\",\\\"sampleType\\\":\\\"样品类型\\\",\\\"sampleModel\\\":\\\"样品型号\\\",\\\"sampleBatch\\\":\\\"1\\\",\\\"sampleManufacturer\\\":\\\"1\\\",\\\"sampleImage\\\":\\\"/oss/physical/temp/641_1733273034949.jpg\\\"},{\\\"key\\\":\\\"748ee8ee11b044fba61be3b39f11d959\\\",\\\"sampleType\\\":\\\"1\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"sampleBatch\\\":\\\"3\\\",\\\"sampleManufacturer\\\":\\\"4\\\"}]\",\"startDate\":\"2024-12-05 05:45:45\",\"supervisor\":\"1862644776694280193\",\"type\":\"2\",\"updateBy\":\"admin\",\"updateTime\":\"2024-12-05 05:46:07\"},null]', NULL, 87, NULL, '2024-12-05 13:46:07', NULL, NULL, NULL, 'pc'), +('1864547618452512770', 1, '用户名: admin,登录成功!', NULL, 'admin', '管理员', '58.215.212.230', NULL, NULL, NULL, NULL, 0, NULL, '2024-12-05 13:49:29', NULL, NULL, NULL, 'pc'), +('1864548666231595010', 1, '用户名: admin,登录成功!', NULL, 'admin', '管理员', '58.215.212.230', NULL, NULL, NULL, NULL, 0, NULL, '2024-12-05 13:53:38', NULL, NULL, NULL, 'pc'), +('1864556219380375554', 4, 'org.jeecg.common.exception.JeecgBootException:上传失败,存在非法文件类型:sql', NULL, NULL, NULL, '58.215.212.230', 'biz=temp', '/physical/sys/common/upload', 'org.jeecg.common.exception.JeecgBootException: 上传失败,存在非法文件类型:sql\n at org.jeecg.common.util.CommonUtils.upload(CommonUtils.java:146)\n at org.jeecg.modules.system.controller.CommonController.upload(CommonController.java:142)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:343)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:751)\n at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89)\n at org.jeecg.common.aspect.DictAspect.doAround(DictAspect.java:64)\n at jdk.internal.reflect.GeneratedMethodAccessor341.invoke(Unknown Source)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:637)\n at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:627)\n at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:71)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:751)\n at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97)\n at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)\n at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:751)\n at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:703)\n at org.jeecg.modules.system.controller.CommonController$$SpringCGLIB$$0.upload()\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)\n at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n at java.base/java.lang.reflect.Method.invoke(Method.java:569)\n at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)\n at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150)\n at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:884)\n at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797)\n at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87)\n at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1081)\n at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:974)\n at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1011)\n at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)\n at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:547)\n at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)\n at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:614)\n at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:74)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:129)\n at io.undertow.websockets.jsr.JsrWebSocketFilter.doFilter(JsrWebSocketFilter.java:172)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61)\n at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108)\n at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66)\n at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108)\n at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66)\n at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458)\n at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373)\n at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90)\n at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83)\n at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387)\n at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at com.alibaba.druid.support.jakarta.WebStatFilter.doFilter(WebStatFilter.java:113)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61)\n at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108)\n at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66)\n at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108)\n at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66)\n at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458)\n at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373)\n at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90)\n at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83)\n at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387)\n at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370)\n at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154)\n at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:352)\n at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:268)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.boot.actuate.web.exchanges.servlet.HttpExchangesFilter.doFilterInternal(HttpExchangesFilter.java:89)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)\n at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)\n at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:67)\n at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:131)\n at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.java:84)\n at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62)\n at io.undertow.servlet.handlers.ServletChain$1.handleRequest(ServletChain.java:68)\n at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36)\n at io.undertow.servlet.handlers.RedirectDirHandler.handleRequest(RedirectDirHandler.java:68)\n at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:117)\n at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57)\n at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)\n at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46)\n at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64)\n at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60)\n at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77)\n at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43)\n at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)\n at io.undertow.servlet.handlers.SendErrorPageHandler.handleRequest(SendErrorPageHandler.java:52)\n at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43)\n at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:276)\n at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135)\n at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:132)\n at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48)\n at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43)\n at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:256)\n at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:101)\n at io.undertow.server.Connectors.executeRootHandler(Connectors.java:393)\n at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:859)\n at org.jboss.threads.ContextHandler$1.runWith(ContextHandler.java:18)\n at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2513)\n at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1538)\n at org.xnio.XnioWorker$WorkerThreadFactory$1$1.run(XnioWorker.java:1282)\n at java.base/java.lang.Thread.run(Thread.java:840)\n', NULL, NULL, NULL, '2024-12-05 14:23:39', NULL, NULL, NULL, 'pc'), +('1864556296186470402', 2, '试验管理-编辑', 3, 'admin', '管理员', '58.215.212.230', 'org.jeecg.modules.database.controller.ExperimentController.edit()', NULL, '[{\"clientName\":\"测试委托方\",\"copyCount\":0,\"createBy\":\"zhangru\",\"createTime\":\"2024-12-04 08:35:55\",\"deviationCondition\":\"[{\\\"key\\\":\\\"c12728d146924964b33fd01fcf70b016\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"sampleNumber\\\":\\\"2,9,8\\\",\\\"offsetCondition\\\":\\\"动态偏置\\\",\\\"load\\\":\\\"111\\\"}]\",\"deviationEquipment\":\"[{\\\"offsetCondition\\\":\\\"444\\\",\\\"equipmentModel\\\":\\\"33\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"key\\\":\\\"c7e3d693ff5a4c1488c01dc125a7855f\\\",\\\"equipmentType\\\":\\\"ff\\\"}]\",\"experimentNo\":\"NO-20241204103546\",\"experimentUser\":\"\",\"experimentUserList\":[],\"id\":\"1864257279610155010\",\"irradiationBoard\":\"[{\\\"irradiationBoardCode\\\":\\\"1-2-3-4-5\\\",\\\"irradiationBoardNumber\\\":\\\"55\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"key\\\":\\\"c091e6c2d49745aeb0720275c9f89221\\\"},{\\\"irradiationBoardCode\\\":\\\"2\\\",\\\"irradiationBoardNumber\\\":\\\"5\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"key\\\":\\\"4575d16403e344329a22ec1af2103ced\\\"}]\",\"name\":\"理化所试验1-1\",\"radiationSourceType\":\"GFS\",\"sampleInfo\":\"[{\\\"key\\\":\\\"b006521b2772416e8938ed5dc5df36b8\\\",\\\"sampleType\\\":\\\"1\\\",\\\"sampleModel\\\":\\\"2\\\",\\\"sampleBatch\\\":\\\"3\\\",\\\"sampleManufacturer\\\":\\\"4\\\",\\\"sampleImage\\\":\\\"\\\"}]\",\"status\":\"试验进行中\",\"supervisor\":\"1862644776694280193\",\"supervisorName\":\"superintendent\",\"sysOrgCode\":\"A01\",\"type\":\"1\",\"updateBy\":\"admin\",\"updateTime\":\"2024-12-05 06:23:57\"},null]', NULL, 51, NULL, '2024-12-05 14:23:57', NULL, NULL, NULL, 'pc'), +('1864556296379408385', 2, '测试过程-添加', 2, 'admin', '管理员', '58.215.212.230', 'org.jeecg.modules.database.controller.ExperimentTestProcessController.add()', NULL, '[{\"annealingDuration\":\"1\",\"comment\":\"1\",\"createBy\":\"admin\",\"createTime\":\"2024-12-05 06:23:57\",\"environmentalHumidity\":\"22\",\"environmentalTemperature\":\"19\",\"exceptionRecord\":\"1\",\"experimentId\":\"1864257279610155010\",\"id\":\"1864556296232607746\",\"sysOrgCode\":\"A01\",\"testData\":\"[{\\\"key\\\":\\\"4c027004189b4b808726364cd2687c11\\\",\\\"url\\\":\\\"上传失败,存在非法文件类型:sql\\\",\\\"fileName\\\":\\\"11.csv\\\"}]\",\"testEndTime\":\"2024-12-05 06:22:19\",\"testEquipment\":\"[{\\\"key\\\":\\\"9af798fe6830459faef1239609f1d5f9\\\",\\\"sample_model\\\":\\\"2\\\",\\\"equipment_model\\\":\\\"0007\\\",\\\"equipment_name\\\":\\\"设备001\\\",\\\"lifespan\\\":\\\"2024-10-23\\\"}]\",\"testFluencePoint\":\"1\",\"testMeteringPoint\":\"1\",\"testParameters\":\"[{\\\"key\\\":\\\"d96da18b6e4a47e3ab341daebf2d1357\\\",\\\"name\\\":\\\"测试参数1\\\"},{\\\"key\\\":\\\"60d2d9ce53164dbe82642a9130eada29\\\",\\\"name\\\":\\\"123\\\"}]\",\"testResult\":\"合格\",\"testStartTime\":\"2024-12-05 06:22:19\"},null]', NULL, 75, NULL, '2024-12-05 14:23:57', NULL, NULL, NULL, 'pc'); 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 ('1170592628746878978', 'd7d6e2e4e2934f2c9385a623fd98c6f3', '菜单管理', '/system/menu', 'system/menu/index', 1, NULL, NULL, 1, NULL, '1', 0.00, 0, 'ant-design:menu-fold-outlined', 0, 0, 0, 0, NULL, 'admin', '2019-09-08 15:00:05', 'ceshi', '2023-10-18 12:02:41', 0, 0, '1', 0), @@ -15937,11 +15989,11 @@ INSERT INTO `test_online_link` (`id`, `pid`, `name`) VALUES ('8', '7', '合肥市'), ('9', '8', '包河区'); -INSERT INTO `test_standards` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `name`, `code`, `content`, `attachment`, `time`) VALUES -('1836364267845693442', 'admin', '2024-09-18 00:00:00', NULL, NULL, 'A01', '123', '123', NULL, NULL, NULL), -('1836365092177424386', 'admin', '2024-09-18 19:22:11', NULL, NULL, 'A01', '456', '456', NULL, NULL, NULL), -('1836366585248985089', 'admin', '2024-09-18 11:28:06', 'admin', '2024-09-18 11:28:13', 'A01', '123', '123', NULL, NULL, '2024-08-24'), -('1861218115614482434', 'zhangru', '2024-11-26 09:19:13', 'zhangru', '2024-11-26 09:19:44', NULL, '测试标准名称', '1we354ed1', NULL, NULL, NULL); +INSERT INTO `test_standards` (`id`, `create_by`, `create_time`, `update_by`, `update_time`, `sys_org_code`, `name`, `code`, `content`, `attachment`, `time`, `humidity_requirements`, `temperature_requirements`) VALUES +('1836364267845693442', 'admin', '2024-09-18 00:00:00', NULL, NULL, 'A01', '123', '123', NULL, NULL, NULL, NULL, NULL), +('1836365092177424386', 'admin', '2024-09-18 19:22:11', NULL, NULL, 'A01', '456', '456', NULL, NULL, NULL, NULL, NULL), +('1836366585248985089', 'admin', '2024-09-18 11:28:06', 'admin', '2024-09-18 11:28:13', 'A01', '123', '123', NULL, NULL, '2024-08-24', NULL, NULL), +('1861218115614482434', 'zhangru', '2024-11-26 09:19:13', 'zhangru', '2024-11-26 09:19:44', NULL, '测试标准名称', '1we354ed1', NULL, NULL, NULL, NULL, NULL); diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/controller/ExperimentAnnealProcessController.java b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/controller/ExperimentAnnealProcessController.java index e9398e4..3918c3f 100644 --- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/controller/ExperimentAnnealProcessController.java +++ b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/controller/ExperimentAnnealProcessController.java @@ -24,7 +24,8 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import org.springframework.web.servlet.ModelAndView; -import java.util.*; +import java.util.Arrays; +import java.util.Objects; /** * @Description: 退火过程 @@ -50,6 +51,11 @@ public class ExperimentAnnealProcessController extends JeecgController queryWrapper = QueryGenerator.initQueryWrapper(experimentAnnealProcess, req.getParameterMap()); - Page page = new Page(pageNo, pageSize); + Page page = new Page<>(pageNo, pageSize); IPage pageList = experimentAnnealProcessService.page(page, queryWrapper); + pageList.getRecords().forEach(v -> experimentAnnealProcessService.assembleDetails(v)); return Result.OK(pageList); } @@ -96,16 +103,10 @@ public class ExperimentAnnealProcessController extends JeecgController sampleInfoList = experimentAnnealProcess.getSampleInfoList(); - if (sampleInfoList!= null && sampleInfoList.size() > 0) { - for (ExperimentSampleInfo sampleInfo : sampleInfoList) { - experimentSampleInfoService.saveOrUpdate(sampleInfo); - } - } + experimentService.changeStatus(experimentId, ExperimentStatus.PROGRESSING); + + experimentAnnealProcessService.saveWithDetails(experimentAnnealProcess); + ExperimentLog experimentLog = new ExperimentLog(); experimentLog.setExperimentId(experimentId); experimentLog.setLogContent("添加退火过程"); @@ -113,7 +114,6 @@ public class ExperimentAnnealProcessController extends JeecgController sampleInfoList = experimentAnnealProcess.getSampleInfoList(); - if (sampleInfoList!= null && sampleInfoList.size() > 0) { - for (ExperimentSampleInfo sampleInfo : sampleInfoList) { - experimentSampleInfoService.saveOrUpdate(sampleInfo); - } - } ExperimentLog experimentLog = new ExperimentLog(); experimentLog.setExperimentId(experimentId); experimentLog.setLogContent("编辑退火过程"); @@ -159,7 +152,6 @@ public class ExperimentAnnealProcessController extends JeecgController complete(@RequestParam(name = "id", required = true) String id) { - Experiment experiment = experimentService.getById(id); - experiment.setStatus(ExperimentStatus.COMPLETED); - experimentService.updateById(experiment); + experimentService.changeStatus(id, ExperimentStatus.COMPLETED); return Result.OK("试验已完成!"); } diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/controller/ExperimentRadiationProcessController.java b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/controller/ExperimentRadiationProcessController.java index 7f2649f..38bc514 100644 --- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/controller/ExperimentRadiationProcessController.java +++ b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/controller/ExperimentRadiationProcessController.java @@ -25,7 +25,8 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import org.springframework.web.servlet.ModelAndView; -import java.util.*; +import java.util.Arrays; +import java.util.Objects; /** * @Description: 辐照过程 @@ -50,7 +51,7 @@ public class ExperimentRadiationProcessController extends JeecgController page = new Page(pageNo, pageSize); IPage pageList = experimentRadiationProcessService.page(page, queryWrapper); + pageList.getRecords().forEach(v -> experimentRadiationProcessService.assembleDetails(v)); return Result.OK(pageList); } @@ -99,17 +101,10 @@ public class ExperimentRadiationProcessController extends JeecgController sampleInfoList = experimentRadiationProcess.getSampleInfoList(); - if (sampleInfoList!= null && sampleInfoList.size() > 0) { - for (ExperimentSampleInfo sampleInfo : sampleInfoList) { - experimentSampleInfoService.saveOrUpdate(sampleInfo); - } - } + experimentService.changeStatus(experimentId ,ExperimentStatus.PROGRESSING); + + experimentRadiationProcessService.saveWithDetails(experimentRadiationProcess); ExperimentLog experimentLog = new ExperimentLog(); experimentLog.setExperimentId(experimentId); @@ -118,7 +113,6 @@ public class ExperimentRadiationProcessController extends JeecgController sampleInfoList = experimentRadiationProcess.getSampleInfoList(); - if (sampleInfoList!= null && sampleInfoList.size() > 0) { - for (ExperimentSampleInfo sampleInfo : sampleInfoList) { - experimentSampleInfoService.saveOrUpdate(sampleInfo); - } - } + experimentService.changeStatus(experimentId,ExperimentStatus.PROGRESSING); + + experimentRadiationProcessService.saveWithDetails(experimentRadiationProcess); + ExperimentLog experimentLog = new ExperimentLog(); experimentLog.setExperimentId(experimentId); experimentLog.setLogContent("编辑辐照过程"); @@ -163,7 +151,6 @@ public class ExperimentRadiationProcessController extends JeecgController queryWrapper = QueryGenerator.initQueryWrapper(experimentTestProcess, req.getParameterMap()); Page page = new Page(pageNo, pageSize); IPage pageList = experimentTestProcessService.page(page, queryWrapper); + pageList.getRecords().forEach(v -> experimentTestProcessService.assembleDetails(v)); return Result.OK(pageList); } @@ -98,16 +100,10 @@ public class ExperimentTestProcessController extends JeecgController sampleInfoList = experimentTestProcess.getSampleInfoList(); - if (sampleInfoList != null && sampleInfoList.size() > 0) { - for (ExperimentSampleInfo sampleInfo : sampleInfoList) { - experimentSampleInfoService.saveOrUpdate(sampleInfo); - } - } + experimentService.changeStatus(experimentId, ExperimentStatus.PROGRESSING); + + experimentTestProcessService.saveWithDetails(experimentTestProcess); + ExperimentLog experimentLog = new ExperimentLog(); experimentLog.setExperimentId(experimentTestProcess.getExperimentId()); experimentLog.setLogContent("添加测试过程"); @@ -116,8 +112,6 @@ public class ExperimentTestProcessController extends JeecgController sampleInfoList = experimentTestProcess.getSampleInfoList(); - if (sampleInfoList != null && sampleInfoList.size() > 0) { - for (ExperimentSampleInfo sampleInfo : sampleInfoList) { - experimentSampleInfoService.saveOrUpdate(sampleInfo); - } - } + experimentService.changeStatus(experimentId, ExperimentStatus.PROGRESSING); + + experimentTestProcessService.saveWithDetails(experimentTestProcess); + ExperimentLog experimentLog = new ExperimentLog(); experimentLog.setExperimentId(experimentId); experimentLog.setLogContent("编辑测试过程"); @@ -162,7 +150,6 @@ public class ExperimentTestProcessController extends JeecgController deviationEquipmentList; + @Schema(description = "样品信息") @TableField(exist = false) private List sampleInfoList; diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/entity/ExperimentRadiationProcess.java b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/entity/ExperimentRadiationProcess.java index cf2f194..b1a64b4 100644 --- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/entity/ExperimentRadiationProcess.java +++ b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/entity/ExperimentRadiationProcess.java @@ -129,6 +129,9 @@ public class ExperimentRadiationProcess implements Serializable { @Schema(description = "辐照结束时间") private Date radiationEndTime; + @Schema(description = "样品信息") + private String sampleInfo; + @TableField(exist = false) private List sampleInfoList; diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/entity/ExperimentTestProcess.java b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/entity/ExperimentTestProcess.java index 0368797..2ba5969 100644 --- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/entity/ExperimentTestProcess.java +++ b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/entity/ExperimentTestProcess.java @@ -176,6 +176,10 @@ public class ExperimentTestProcess implements Serializable { @Schema(description = "测试结果") private String testResult; + @Schema(description = "样品信息") + private String sampleInfo; + + @Schema(description = "样品信息") @TableField(exist = false) private List sampleInfoList; diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentAnnealProcessService.java b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentAnnealProcessService.java index fcaee1a..0508045 100644 --- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentAnnealProcessService.java +++ b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentAnnealProcessService.java @@ -13,4 +13,8 @@ import java.util.List; */ public interface IExperimentAnnealProcessService extends IService { List getByExperimentId(String experimentId); + + void assembleDetails(ExperimentAnnealProcess experimentAnnealProcess); + + void saveWithDetails(ExperimentAnnealProcess experimentAnnealProcess); } diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentRadiationProcessService.java b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentRadiationProcessService.java index c25ae4c..7076ead 100644 --- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentRadiationProcessService.java +++ b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentRadiationProcessService.java @@ -15,4 +15,7 @@ import java.util.List; public interface IExperimentRadiationProcessService extends IService { List getByExperimentId(String experimentId); + void assembleDetails(ExperimentRadiationProcess experimentRadiationProcess); + + void saveWithDetails(ExperimentRadiationProcess experimentRadiationProcess); } diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentService.java b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentService.java index 778f8c2..0a401cc 100644 --- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentService.java +++ b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentService.java @@ -14,4 +14,7 @@ public interface IExperimentService extends IService { void fetchExperimentDetail(Experiment experiment); Experiment copy(Experiment oldExperiment); + + void changeStatus(String experimentId, String status); + } diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentTestProcessService.java b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentTestProcessService.java index 409d1cf..09ac9d8 100644 --- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentTestProcessService.java +++ b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/IExperimentTestProcessService.java @@ -15,4 +15,7 @@ import java.util.List; public interface IExperimentTestProcessService extends IService { List getByExperimentId(String experimentId); + void assembleDetails(ExperimentTestProcess experimentTestProcess); + + void saveWithDetails(ExperimentTestProcess experimentTestProcess); } diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/impl/ExperimentAnnealProcessServiceImpl.java b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/impl/ExperimentAnnealProcessServiceImpl.java index 3ccb4e4..d1e5262 100644 --- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/impl/ExperimentAnnealProcessServiceImpl.java +++ b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/impl/ExperimentAnnealProcessServiceImpl.java @@ -1,13 +1,18 @@ package org.jeecg.modules.database.service.impl; +import cn.hutool.core.collection.CollUtil; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; -import org.jeecg.modules.database.entity.ExperimentAnnealProcess; +import org.apache.commons.lang3.StringUtils; +import org.jeecg.modules.database.entity.*; import org.jeecg.modules.database.mapper.ExperimentAnnealProcessMapper; -import org.jeecg.modules.database.service.IExperimentAnnealProcessService; +import org.jeecg.modules.database.service.*; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; -import java.util.List; +import java.io.Serializable; +import java.util.*; +import java.util.stream.Collectors; /** * @Description: 退火过程 @@ -19,8 +24,94 @@ import java.util.List; public class ExperimentAnnealProcessServiceImpl extends ServiceImpl implements IExperimentAnnealProcessService { + @Autowired + private IExperimentSampleInfoService experimentSampleInfoService; + @Autowired + private IExperimentDeviationEquipmentService experimentDeviationEquipmentService; + @Autowired + private IExperimentDeviationConditionService experimentDeviationConditionService; + @Override public List getByExperimentId(String experimentId) { - return list(new LambdaQueryWrapper().eq(ExperimentAnnealProcess::getExperimentId, experimentId)); + List list = list( + new LambdaQueryWrapper().eq(ExperimentAnnealProcess::getExperimentId, experimentId)); + list.forEach(this::assembleDetails); + return list; } + + @Override + public ExperimentAnnealProcess getById(Serializable id) { + ExperimentAnnealProcess experimentAnnealProcess = super.getById(id); + if (Objects.isNull(experimentAnnealProcess)) { + return null; + } + assembleDetails(experimentAnnealProcess); + return experimentAnnealProcess; + } + + @Override + public void assembleDetails(ExperimentAnnealProcess experimentAnnealProcess) { + //sampleInfo + String sampleInfoIds = experimentAnnealProcess.getSampleInfo(); + List sampleInfoList; + if (StringUtils.isNotBlank(sampleInfoIds)) { + sampleInfoList = Arrays.stream(sampleInfoIds.split(",")).map(sampleInfoId -> experimentSampleInfoService.getById(sampleInfoId)) + .filter(Objects::nonNull).collect(Collectors.toList()); + experimentAnnealProcess.setSampleInfoList(sampleInfoList); + } + //DeviationEquipment + String deviationEquipmentIds = experimentAnnealProcess.getDeviationEquipment(); + if (StringUtils.isNotBlank(deviationEquipmentIds)) { + List deviationEquipmentList = Arrays.stream(sampleInfoIds.split(",")).map( + sampleInfoId -> experimentDeviationEquipmentService.getById(sampleInfoId)) + .filter(Objects::nonNull).collect(Collectors.toList()); + experimentAnnealProcess.setDeviationEquipmentList(deviationEquipmentList); + } + //DeviationCondition + String deviationConditionIds = experimentAnnealProcess.getDeviationCondition(); + if (StringUtils.isNotBlank(deviationConditionIds)) { + List deviationEquipmentList = Arrays.stream(sampleInfoIds.split(",")).map( + sampleInfoId -> experimentDeviationConditionService.getById(sampleInfoId)) + .filter(Objects::nonNull).collect(Collectors.toList()); + experimentAnnealProcess.setDeviationConditionList(deviationEquipmentList); + } + } + + @Override + public void saveWithDetails(ExperimentAnnealProcess experimentAnnealProcess) { + // 保存样品信息 + List sampleInfoList = experimentAnnealProcess.getSampleInfoList(); + List sampleInfoIds = new ArrayList<>(); + if (CollUtil.isNotEmpty(sampleInfoList)) { + for (ExperimentSampleInfo sampleInfo : sampleInfoList) { + experimentSampleInfoService.saveOrUpdate(sampleInfo); + sampleInfoIds.add(sampleInfo.getId()); + } + } + experimentAnnealProcess.setSampleInfo(StringUtils.join(sampleInfoIds, ",")); + + // 保存偏置条件信息 + List deviationConditionList = experimentAnnealProcess.getDeviationConditionList(); + List deviationConditionIds = new ArrayList<>(); + if (CollUtil.isNotEmpty(deviationConditionList)) { + for (ExperimentDeviationCondition sampleInfo : deviationConditionList) { + experimentDeviationConditionService.saveOrUpdate(sampleInfo); + deviationConditionIds.add(sampleInfo.getId()); + } + } + experimentAnnealProcess.setDeviationCondition(StringUtils.join(deviationConditionIds, ",")); + + //加偏设备信息 + List deviationEquipmentList = experimentAnnealProcess.getDeviationEquipmentList(); + List deviationEquipmentIds = new ArrayList<>(); + if (CollUtil.isNotEmpty(deviationEquipmentList)) { + for (ExperimentDeviationEquipment sampleInfo : deviationEquipmentList) { + experimentDeviationEquipmentService.saveOrUpdate(sampleInfo); + deviationEquipmentIds.add(sampleInfo.getId()); + } + } + experimentAnnealProcess.setDeviationEquipment(StringUtils.join(deviationEquipmentIds, ",")); + saveOrUpdate(experimentAnnealProcess); + } + } diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/impl/ExperimentRadiationProcessServiceImpl.java b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/impl/ExperimentRadiationProcessServiceImpl.java index e1a6a6f..4528058 100644 --- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/impl/ExperimentRadiationProcessServiceImpl.java +++ b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/impl/ExperimentRadiationProcessServiceImpl.java @@ -2,12 +2,18 @@ package org.jeecg.modules.database.service.impl; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.apache.commons.lang3.StringUtils; import org.jeecg.modules.database.entity.ExperimentRadiationProcess; +import org.jeecg.modules.database.entity.ExperimentSampleInfo; import org.jeecg.modules.database.mapper.ExperimentRadiationProcessMapper; import org.jeecg.modules.database.service.IExperimentRadiationProcessService; +import org.jeecg.modules.database.service.IExperimentSampleInfoService; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; -import java.util.List; +import java.io.Serializable; +import java.util.*; +import java.util.stream.Collectors; /** * @Description: 辐照过程 @@ -18,9 +24,51 @@ import java.util.List; @Service public class ExperimentRadiationProcessServiceImpl extends ServiceImpl implements IExperimentRadiationProcessService { + @Autowired + private IExperimentSampleInfoService experimentSampleInfoService; @Override public List getByExperimentId(String experimentId) { - return list(new LambdaQueryWrapper().eq(ExperimentRadiationProcess::getExperimentId, experimentId)); + List list = list( + new LambdaQueryWrapper().eq(ExperimentRadiationProcess::getExperimentId, experimentId)); + list.forEach(this::assembleDetails); + return list; + } + + @Override + public ExperimentRadiationProcess getById(Serializable id) { + ExperimentRadiationProcess experimentRadiationProcess = super.getById(id); + if (Objects.isNull(experimentRadiationProcess)) { + return null; + } + assembleDetails(experimentRadiationProcess); + return experimentRadiationProcess; + } + + @Override + public void assembleDetails(ExperimentRadiationProcess experimentRadiationProcess) { + String sampleInfoIds = experimentRadiationProcess.getSampleInfo(); + List sampleInfoList; + if (StringUtils.isNotBlank(sampleInfoIds)) { + sampleInfoList = Arrays.stream(sampleInfoIds.split(",")).map(sampleInfoId -> experimentSampleInfoService.getById(sampleInfoId)) + .filter(Objects::nonNull).collect(Collectors.toList()); + experimentRadiationProcess.setSampleInfoList(sampleInfoList); + } + } + + @Override + public void saveWithDetails(ExperimentRadiationProcess experimentRadiationProcess) { + + List sampleInfoList = experimentRadiationProcess.getSampleInfoList(); + List sampleInfoIds = new ArrayList<>(); + if (sampleInfoList != null && sampleInfoList.size() > 0) { + for (ExperimentSampleInfo sampleInfo : sampleInfoList) { + experimentSampleInfoService.saveOrUpdate(sampleInfo); + sampleInfoIds.add(sampleInfo.getId()); + } + } + + experimentRadiationProcess.setSampleInfo(StringUtils.join(sampleInfoIds, ",")); + saveOrUpdate(experimentRadiationProcess); } } diff --git a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/impl/ExperimentServiceImpl.java b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/impl/ExperimentServiceImpl.java index 05d53f8..d7332e6 100644 --- a/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/impl/ExperimentServiceImpl.java +++ b/physical-module-system/physical-system-biz/src/main/java/org/jeecg/modules/database/service/impl/ExperimentServiceImpl.java @@ -61,8 +61,7 @@ public class ExperimentServiceImpl extends ServiceImpl sampleInfoList = experimentSampleInfoService.getByExperimentId( - experiment.getId()); + List sampleInfoList = experimentSampleInfoService.getByExperimentId(experiment.getId()); if (CollUtil.isNotEmpty(sampleInfoList)) { experiment.setSampleInfoList(sampleInfoList); } @@ -140,4 +139,20 @@ public class ExperimentServiceImpl extends ServiceImpl implements IExperimentTestProcessService { @Autowired - private ITestStandardsService testStandardsService; + private ITestStandardsService testStandardsService; + @Autowired + private IExperimentSampleInfoService experimentSampleInfoService; @Override public List getByExperimentId(String experimentId) { - return list(new LambdaQueryWrapper().eq(ExperimentTestProcess::getExperimentId, experimentId)); + List list = list( + new LambdaQueryWrapper().eq(ExperimentTestProcess::getExperimentId, experimentId)); + list.forEach(this::assembleDetails); + return list; } @Override public ExperimentTestProcess getById(Serializable id) { ExperimentTestProcess experimentTestProcess = super.getById(id); + if (Objects.isNull(experimentTestProcess)) { + return null; + } + assembleDetails(experimentTestProcess); + return experimentTestProcess; + } + + @Override + public void assembleDetails(ExperimentTestProcess experimentTestProcess) { if (StringUtils.isNotBlank(experimentTestProcess.getTestStandardsId())) { TestStandards testStandards = testStandardsService.getById(experimentTestProcess.getTestStandardsId()); experimentTestProcess.setTestStandards(testStandards); } - return experimentTestProcess; + String sampleInfoIds = experimentTestProcess.getSampleInfo(); + List sampleInfoList; + if (StringUtils.isNotBlank(sampleInfoIds)) { + sampleInfoList = Arrays.stream(sampleInfoIds.split(",")).map(sampleInfoId -> experimentSampleInfoService.getById(sampleInfoId)) + .filter(Objects::nonNull).collect(Collectors.toList()); + experimentTestProcess.setSampleInfoList(sampleInfoList); + } + } + + @Override + public void saveWithDetails(ExperimentTestProcess experimentTestProcess) { + List sampleInfoList = experimentTestProcess.getSampleInfoList(); + List sampleInfoIds = new ArrayList<>(); + if (sampleInfoList != null && sampleInfoList.size() > 0) { + for (ExperimentSampleInfo sampleInfo : sampleInfoList) { + experimentSampleInfoService.saveOrUpdate(sampleInfo); + sampleInfoIds.add(sampleInfo.getId()); + } + } + experimentTestProcess.setSampleInfo(StringUtils.join(sampleInfoIds, ",")); + saveOrUpdate(experimentTestProcess); } }