加日志

This commit is contained in:
2024-05-09 09:14:53 +08:00
parent 51a3f42f62
commit cba6df4ef5
2 changed files with 6 additions and 3 deletions

View File

@@ -2511,6 +2511,7 @@ public class OrderBasicInfoServiceImpl implements OrderBasicInfoService {
*/
@Override
public Map<String, Object> generateOrderForThirdParty(QueryStartChargeDTO dto) {
logger.info("联联平台生成订单param:{}", JSON.toJSONString(dto));
// 获取到第三方平台类型
String operatorId = dto.getOperatorId();
String type = ThirdPartyOperatorIdEnum.getTypeByOperatorId(operatorId);
@@ -2590,7 +2591,7 @@ public class OrderBasicInfoServiceImpl implements OrderBasicInfoService {
resultMap.put("orderBasicInfo", orderBasicInfo);
resultMap.put("orderDetail", orderDetail);
// resultMap.put("accountBalance", totalAccountAmount);
logger.info("联联平台生成订单result:{}", JSON.toJSONString(resultMap));
return resultMap;
}