Browse Source

统计收入查询方式调整

master
453530270@qq.com 2 years ago
parent
commit
c4098a2081
  1. 4
      src/main/java/cn/chjyj/szwh/service/impl/AccountCloseServiceImpl.java

4
src/main/java/cn/chjyj/szwh/service/impl/AccountCloseServiceImpl.java

@ -249,9 +249,9 @@ public class AccountCloseServiceImpl implements AccountCloseService {
} }
} }
// 统计收入 // 统计收入
BigDecimal income = userAccountBillMapper.sumMoney("thatday_sale_money"); BigDecimal income = userAccountBillMapper.sumMoney("thatday_sale_money",userIsli);
// 支出 // 支出
BigDecimal disburse = userAccountBillMapper.sumMoney("thatday_buy_money"); BigDecimal disburse = userAccountBillMapper.sumMoney("thatday_buy_money",userIsli);
// 时间格式 // 时间格式
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// 结果集map // 结果集map

Loading…
Cancel
Save