Commit 776c437e authored by huyuchen's avatar huyuchen

明细接口改造

parent 7178c425
...@@ -328,7 +328,7 @@ public class TIncomeServiceImpl extends ServiceImpl<TIncomeMapper, TIncome> impl ...@@ -328,7 +328,7 @@ public class TIncomeServiceImpl extends ServiceImpl<TIncomeMapper, TIncome> impl
List<TIncome> list = baseMapper.selectList(Wrappers.<TIncome>query().lambda() List<TIncome> list = baseMapper.selectList(Wrappers.<TIncome>query().lambda()
.eq(TIncome::getSendStatus, CommonConstants.ZERO_STRING) .eq(TIncome::getSendStatus, CommonConstants.ZERO_STRING)
.eq(TIncome::getFeeType, CommonConstants.ONE_STRING)); .eq(TIncome::getFeeType, CommonConstants.ONE_STRING));
int i = (int) Math.ceil((double) count / CommonConstants.TEN_THOUSAND_INT); int i = (int) Math.ceil((double) count / CommonConstants.ONE_THOUSAND_INT);
if (!list.isEmpty()) { if (!list.isEmpty()) {
List<TIncome> pushList; List<TIncome> pushList;
int k = 0; int k = 0;
...@@ -356,7 +356,7 @@ public class TIncomeServiceImpl extends ServiceImpl<TIncomeMapper, TIncome> impl ...@@ -356,7 +356,7 @@ public class TIncomeServiceImpl extends ServiceImpl<TIncomeMapper, TIncome> impl
List<TIncome> list = baseMapper.selectList(Wrappers.<TIncome>query().lambda() List<TIncome> list = baseMapper.selectList(Wrappers.<TIncome>query().lambda()
.eq(TIncome::getSendStatus, CommonConstants.ZERO_STRING) .eq(TIncome::getSendStatus, CommonConstants.ZERO_STRING)
.eq(TIncome::getFeeType, CommonConstants.TWO_STRING)); .eq(TIncome::getFeeType, CommonConstants.TWO_STRING));
int i = (int) Math.ceil((double) count / CommonConstants.TEN_THOUSAND_INT); int i = (int) Math.ceil((double) count / CommonConstants.ONE_THOUSAND_INT);
if (!list.isEmpty()) { if (!list.isEmpty()) {
List<TIncome> pushList; List<TIncome> pushList;
int k = 0; int k = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment