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

This commit is contained in:
tianyongbao
2024-05-23 17:24:34 +08:00
parent 54fe8aa06f
commit 186bfc217b
3 changed files with 6 additions and 0 deletions

View File

@@ -30,4 +30,8 @@ public class AccountsDto extends BaseEntity implements Serializable
@ApiModelProperty(value="账户状态")
private String state;
/** 账户状态 */
@ApiModelProperty(value="账户id")
private Long accountId;
}

View File

@@ -432,6 +432,7 @@ public class StatisticAnalysisImpl implements IStatisticAnalysisService {
dto.setState("1");
//信用卡
dto.setType("2");
dto.setAccountId(analysisDto.getId());
List<AccountsVo> accountsList=accountsMapper.selectAccountsList(dto);
double creditAvailableLimit =0;
double creditBalance =0;