|
|
|
@ -322,9 +322,11 @@ public class AccountCloseServiceImpl implements AccountCloseService { |
|
|
|
|
|
|
|
// 查询map
|
|
|
|
List<UserAccountBill> uacblist = userAccountBillMapper.getUserAccBillMap(somap,startrs,ilimit); |
|
|
|
BigDecimal income = new BigDecimal(0.00); // 收入
|
|
|
|
BigDecimal disburse = new BigDecimal(0.00); //支出
|
|
|
|
// bigdecimal 利用 字符串进行初始化
|
|
|
|
BigDecimal income = new BigDecimal("0.00"); // 收入
|
|
|
|
BigDecimal disburse = new BigDecimal("0.00"); //支出
|
|
|
|
|
|
|
|
// 返回list
|
|
|
|
List retlist =new ArrayList(); |
|
|
|
for(UserAccountBill uac:uacblist){ |
|
|
|
// 用户信息
|
|
|
|
|