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

This commit is contained in:
tianyongbao
2024-07-17 20:19:43 +08:00
parent a0428c4f2c
commit df57e4abfc

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();