| | |
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.yeshi.fanli.dto.ChartTDO;
|
| | | import com.yeshi.fanli.entity.bus.user.UserSystemCouponRecord;
|
| | | import com.yeshi.fanli.vo.user.SystemCouponVO;
|
| | | import com.yeshi.fanli.vo.user.UserSystemCouponCountVO;
|
| | |
| | | Long countFreeCouponRecord(@Param("key") String key, @Param("keyType") Integer keyType,
|
| | | @Param("state") Integer state);
|
| | |
|
| | | /**
|
| | | * 奖励券使用数量曲线图
|
| | | * @param dateType
|
| | | * @param year
|
| | | * @param startTime
|
| | | * @param endTime
|
| | | * @return
|
| | | */
|
| | | List<ChartTDO> getRebateCouponUsedNumToCharts(@Param("dateType") Integer dateType, @Param("year") String year, |
| | | @Param("startTime")String startTime, @Param("endTime")String endTime);
|
| | |
|
| | |
|
| | | /**
|
| | | * 奖励券使用成功金额曲线图
|
| | | * @param dateType
|
| | | * @param year
|
| | | * @param startTime
|
| | | * @param endTime
|
| | | * 统计奖励券金额成功金额
|
| | | * @param type
|
| | | * @param preDay
|
| | | * @return
|
| | | */
|
| | | List<ChartTDO> getRebateCouponMoneyToCharts(@Param("dateType") Integer dateType, @Param("year") String year, |
| | | @Param("startTime")String startTime, @Param("endTime")String endTime);
|
| | | BigDecimal countRebateMoneyByDay(@Param("preDay") String preDay);
|
| | |
|
| | |
|
| | | /**
|
| | | * 奖励券使用成功金额曲线图
|
| | | * @param dateType
|
| | | * @param year
|
| | | * @param startTime
|
| | | * @param endTime
|
| | | * 统计免单金额成功金额
|
| | | * @param type
|
| | | * @param preDay
|
| | | * @return
|
| | | */
|
| | | List<ChartTDO> getFreeCouponMoneyToCharts(@Param("dateType") Integer dateType, @Param("year") String year, |
| | | @Param("startTime")String startTime, @Param("endTime")String endTime, @Param("couponType")String couponType);
|
| | | BigDecimal countFreeMoneyByTypeAndDay(@Param("type") String type, @Param("preDay") String preDay);
|
| | | |
| | | |
| | | /**
|
| | | * 统计券每日新增数量
|
| | | * @param type
|
| | | * @param preDay
|
| | | * @return
|
| | | */
|
| | | BigDecimal countCouponNumByDay(@Param("type") String type, @Param("preDay") String preDay);
|
| | |
|
| | | } |