update 校验参数

This commit is contained in:
Guoqs
2026-03-12 13:35:35 +08:00
parent 1bd97b5fa1
commit 74f37b5b5c

View File

@@ -92,6 +92,9 @@ public class ClearingWithdrawInfoServiceImpl implements ClearingWithdrawInfoServ
@Override @Override
public List<ClearingBillVO> selectWithdrawInfoByOrderCodeList(List<String> orderCodeList) { public List<ClearingBillVO> selectWithdrawInfoByOrderCodeList(List<String> orderCodeList) {
if (CollectionUtils.isEmpty(orderCodeList)) {
return Lists.newArrayList();
}
return clearingWithdrawInfoMapper.selectWithdrawInfoByOrderCodeList(orderCodeList); return clearingWithdrawInfoMapper.selectWithdrawInfoByOrderCodeList(orderCodeList);
} }