yujian
2020-06-29 ec60e757d358636dcac1589c44a66f3e276fe58c
fanli/src/main/java/com/yeshi/fanli/service/inter/count/HongBaoV2CountService.java
@@ -7,6 +7,8 @@
import com.yeshi.fanli.vo.order.HongBaoV2VO;
public interface HongBaoV2CountService {
   /**
    * 统计历史总到账金额
@@ -183,7 +185,7 @@
    * @return
    */
   public BigDecimal getRewardMoneyByToSearch(Long uid, Integer dateType, Integer hbType, Integer orderState, String orderNo,
          Integer moneyState, String startTime, String endTime, List<Integer> listSource, boolean notBackSuVip);
          Integer moneyState, String startTime, String endTime, List<Integer> listSource);
   
   public Long countOrderByTypeAndDate(Integer orderType, String preDay);
@@ -237,13 +239,26 @@
    */
   public BigDecimal sumMoneyByANotSettleAndUid(Long uid);
   /**
    * 统计未到账的数量
    * 统计已到账订单数量
    * @param uid
    * @param payment
    * @param type
    * @param payment -付款金额
    * @param type -类型: 1自购 2分享 3邀请  4自购+分享
    * @param dateType 1本月
    * @return
    */
   public long countMyDirectOrderByCashNotArrival(Long uid, BigDecimal payment, Integer type);
   public long countOrderByCashArrival(Long uid, BigDecimal payment, Integer type, Integer dateType);
   /**
    * 统计未到账订单数量
    * @param uid
    * @param payment -付款金额
    * @param type -类型: 1自购 2分享 3邀请  4自购+分享
    * @param dateType 1本月
    * @return
    */
   public long countOrderByCashNotArrival(Long uid, BigDecimal payment, Integer type, Integer dateType);
}