Compare commits

...

2 Commits

Author SHA1 Message Date
钱涛 8b1fe9ed3f Merge branch 'release/个税版本' into release/个税&业务线 2025-12-19 13:30:51 +08:00
钱涛 55c8680ab2 修改流量使用量 2025-12-19 13:30:11 +08:00
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ public class TaxDeclarationApiFlowStatisticServiceImpl extends Service implement
return TaxDeclarationApiFlowTotalDTO.builder()
.total(apiConfigPO.getTotality())
.remain(apiConfigPO.getRemain())
.used(Long.parseLong(response.getBody().getSurplus()))
.used(Long.parseLong(response.getBody().getUsed()))
.lastUpdateTime(SalaryDateUtil.getFormatLocalDateTime(apiConfigPO.getLastUpdateTime()))
.build();
}