| | |
| | | import com.yeshi.fanli.vo.order.HongBaoV2VO;
|
| | |
|
| | | public interface HongBaoV2CountService {
|
| | | |
| | | |
| | |
|
| | | /**
|
| | | * 统计历史总到账金额
|
| | |
| | | */
|
| | | public long countMyDirectOrderByCashArrival(Long uid, BigDecimal payment);
|
| | |
|
| | | /**
|
| | | * 统计订单数量
|
| | | * @param uid
|
| | | * @param time 下单开始时间
|
| | | * @param payment 付款金额
|
| | | * @param type 订单类型 1自购 2分享
|
| | | * @return
|
| | | */
|
| | | public long countMyDirectOrderByCashArrival(Long uid, BigDecimal payment, Integer type);
|
| | | |
| | | |
| | |
|
| | | public BigDecimal geBonusByuid(Long uid, Integer dateType, Integer hbType, Integer moneyState);
|
| | |
|
| | |
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | public BigDecimal sumMoneyByANotSettleAndUid(Long uid); |
| | | public BigDecimal sumMoneyByANotSettleAndUid(Long uid);
|
| | |
|
| | | |
| | |
|
| | | /**
|
| | | * 统计已到账订单数量
|
| | | * @param uid
|
| | | * @param payment -付款金额
|
| | | * @param type -类型: 1自购 2分享 3邀请 4自购+分享 |
| | | * @param dateType 1本月
|
| | | * @return
|
| | | */
|
| | | 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); |
| | |
|
| | | }
|