admin
2020-06-28 eda623f37c3260f4b4657e34a8a39798c72432b1
fanli/src/main/java/com/yeshi/fanli/service/impl/count/HongBaoV2CountServiceImpl.java
@@ -159,14 +159,6 @@
      return count;
   }
   
   @Override
   public long countMyDirectOrderByCashNotArrival(Long uid, BigDecimal payment, Integer type) {
      Long count = hongBaoV2CountMapper.countMyDirectOrderByCashNotArrival(uid, payment, type);
      if (count == null) {
         count = 0L;
      }
      return count;
   }
   
   @Override
   public BigDecimal getRewardMoneyToCount(Long uid, Integer dateType, Integer hbType, List<Integer> listSource) {
@@ -218,6 +210,22 @@
       return money;
   }
   
   @Override
   public long countOrderByCashArrival(Long uid, BigDecimal payment, Integer type, Integer dateType) {
      Long count = hongBaoV2CountMapper.countOrderByCashArrival(uid, payment, type, dateType);
      if (count == null) {
         count = 0L;
      }
      return count;
   }
   
   @Override
   public long countOrderByCashNotArrival(Long uid, BigDecimal payment, Integer type, Integer dateType) {
      Long count = hongBaoV2CountMapper.countOrderByCashNotArrival(uid, payment, type, dateType);
      if (count == null) {
         count = 0L;
      }
      return count;
   }
   
}