| | |
| | | */ |
| | | Map<String, BigDecimal> countOrderByHongBaoType(@Param("uid") Long uid, @Param("day") Integer day); |
| | | |
| | | |
| | | /** |
| | | * 总订单 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | long countOrder(@Param("uid")Long uid, @Param("isToday")Integer isToday); |
| | | |
| | | /** |
| | | * 总订单 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | BigDecimal countOrderMoney(@Param("uid")Long uid, @Param("isToday")Integer isToday); |
| | | |
| | | |
| | | /** |
| | | * 昨日总订单-根据红包类型 自购 邀请 分享 |
| | | * @param uid |
| | |
| | | */ |
| | | Map<String, BigDecimal> countByUidAndOrderState(@Param("uid") Long uid, @Param("type") Integer type, |
| | | @Param("startTime")String startTime, @Param("endTime")String endTime); |
| | | |
| | | /** |
| | | * 奖金订单数量 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | long countBonusOrder(@Param("uid")Long uid, @Param("type") Integer type, @Param("day")Integer day); |
| | | |
| | | /** |
| | | * 奖金统计 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | BigDecimal countBonusOrderMoney(@Param("uid")Long uid, @Param("type") Integer type, @Param("day")Integer day); |
| | | |
| | | /** |
| | | * 奖金订单列表 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | List<CommonOrderVO> listBonusOrder(@Param("start") long start, @Param("count") int count, |
| | | @Param("uid")Long uid, @Param("type") Integer type, @Param("day")Integer day); |
| | | |
| | | /** |
| | | * 统计订单 根据订单状态 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | Map<String, BigDecimal> countBonusOrderByState(@Param("uid") Long uid, @Param("type") Integer type, |
| | | @Param("day")Integer day); |
| | | |
| | | } |