Merge branch 'master' into feature/REQ-3502

This commit is contained in:
yanglin 2025-01-15 20:33:37 +08:00
commit 5cc26c4c3a

View File

@ -68,7 +68,8 @@ public class RequestReplayService {
RequestReplay replay = new RequestReplay();
replay.setTemplateCode(requestInfo.getTemplateCode());
replay.setBizCode(requestInfo.getBizCode());
replay.setSubBizCode(requestInfo.getSubBizCode());
String subBizCode = requestInfo.getSubBizCode();
replay.setSubBizCode(subBizCode == null ? "" : subBizCode);
replay.setType(requestInfo.getReplayType());
replay.setHash(hash);
replay.setRequest(JSON.parseObject(JSON.toJSONString(requestInfo.getRequest())));