fix: 信用卡账单统计,bug修复。

This commit is contained in:
tianyongbao
2024-07-17 20:19:43 +08:00
parent 1dcd33a595
commit 9e6167ed11

View File

@@ -456,6 +456,7 @@ public class StatisticAnalysisImpl implements IStatisticAnalysisService {
//信用卡额度
BankCardLendDto bankCardLendDto=new BankCardLendDto();
bankCardLendDto.setType("2");
bankCardLendDto.setStatus("1");
bankCardLendDto.setCreditCardId(analysisDto.getId());
List<BankCardLendVo> bankCardLendVoList=statisticAnalysisMapper.selectBankCardLendList(bankCardLendDto);
int creditLimit = bankCardLendVoList.stream().mapToInt(BankCardLendVo::getCreditLimit).sum();