This commit is contained in:
Lemon
2026-01-21 16:01:23 +08:00
parent cf9ffcbd59
commit c24c66e052
3 changed files with 9 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ public class BusinessOrderController extends BaseController {
RestApiResponse<?> response = null;
try {
BusinessOrderDetailInfoVO vo = orderBasicInfoService.getBusinessOrderDetail(orderCode);
response = new RestApiResponse<>(ImmutableMap.of("BusinessConnectorInfo", vo));
response = new RestApiResponse<>(ImmutableMap.of("BusinessOrderDetailInfo", vo));
} catch (Exception e) {
logger.error("通过订单编号查询订单信息详情 error", e);
response = new RestApiResponse<>(e);