# Conflicts:
#	tools/mms-mapping/src/main/java/com/njcn/gather/icd/mapping/controller/MappingController.java
This commit is contained in:
周宇 蔡
2026-04-29 15:21:52 +08:00

View File

@@ -117,7 +117,7 @@ public class MappingController extends BaseController {
public IcdToXmlResponse getXmlFromJson(@Validated @RequestPart("request") JsonToXmlRequest request) { public IcdToXmlResponse getXmlFromJson(@Validated @RequestPart("request") JsonToXmlRequest request) {
String methodDescribe = getMethodDescribe("getXmlFromJson"); String methodDescribe = getMethodDescribe("getXmlFromJson");
LogUtil.njcnDebug(log, "{},开始将 MMS JSON 转换为 XML", methodDescribe); LogUtil.njcnDebug(log, "{},开始将 MMS JSON 转换为 XML", methodDescribe);
// // 将请求参数转换为 Command // // 将请求参数转换为 Command
// IcdToXmlGenerateCommand command = // IcdToXmlGenerateCommand command =
// icdRequestConverter.toCommand(request); // icdRequestConverter.toCommand(request);
@@ -125,7 +125,7 @@ public class MappingController extends BaseController {
// 调用服务生成 XML // 调用服务生成 XML
IcdToXmlGenerateResult result = IcdToXmlGenerateResult result =
icdToXmlTaskAppService.generateXmlFromJson(request.getMappingJson()); icdToXmlTaskAppService.generateXmlFromJson(request.getMappingJson());
return icdResponseConverter.fromResult(result); return icdResponseConverter.fromResult(result);
} }