fix(接口测试): 修复测试报告批量删除报错问题

This commit is contained in:
fit2-zhao 2022-02-18 16:17:38 +08:00 committed by fit2-zhao
parent de2af09f35
commit df5bdeac8b
1 changed files with 1 additions and 1 deletions

View File

@ -632,7 +632,7 @@ public class ApiScenarioReportService {
definitionExecResultMapper.deleteByExample(definitionExecResultExample); definitionExecResultMapper.deleteByExample(definitionExecResultExample);
ApiDefinitionExecResultExample execResultExample = new ApiDefinitionExecResultExample(); ApiDefinitionExecResultExample execResultExample = new ApiDefinitionExecResultExample();
execResultExample.createCriteria().andIntegratedReportIdIn(handleIdList); execResultExample.createCriteria().andIntegratedReportIdIn(ids);
definitionExecResultMapper.deleteByExample(execResultExample); definitionExecResultMapper.deleteByExample(execResultExample);
} }
} }