diff --git a/dlp-drugtesting-biz/src/main/java/digital/laboratory/platform/inspection/service/impl/PushDataToLabsCareServiceImpl.java b/dlp-drugtesting-biz/src/main/java/digital/laboratory/platform/inspection/service/impl/PushDataToLabsCareServiceImpl.java index d797e64..a0045fd 100644 --- a/dlp-drugtesting-biz/src/main/java/digital/laboratory/platform/inspection/service/impl/PushDataToLabsCareServiceImpl.java +++ b/dlp-drugtesting-biz/src/main/java/digital/laboratory/platform/inspection/service/impl/PushDataToLabsCareServiceImpl.java @@ -397,11 +397,11 @@ public class PushDataToLabsCareServiceImpl implements PushDataToLabsCareService List gauging = testDataList.stream().map(data -> { JSONObject testDataJson = new JSONObject(); testDataJson.set("blsjxdwc", data.getRtTimeError()); // 保留时间相对误差(%) - testDataJson.set("swbzgzyzb", NULL_PLACEHOLDER); // 标准工作溶液制备 + testDataJson.set("bzgzyzb", NULL_PLACEHOLDER); // 标准工作溶液制备 TestRecordSampleDataVO stdData = stdTestDataMap.get(data.getCompoundName()); testDataJson.set("bzwzblsj", stdData.getTargetRtTime()); // 标准物质保留时间(min) testDataJson.set("bzwzwb", stdData.getCompoundName()); // 标准物质名称 - testDataJson.set("swdcypzb", NULL_PLACEHOLDER); // 待测样品制备 + testDataJson.set("dcypzb", NULL_PLACEHOLDER); // 待测样品制备 testDataJson.set("dxff", useMethodNameStr); // 所用的方法 testDataJson.set("dxyq", useInstrumentNameStr); // 使用仪器 testDataJson.set("jdyj", inspectRecordService.buildInspectOpinion(Collections.singletonList(TestRecordSampleDataConverter.voToEntity(data))));