| | |
| | | package com.yeshi.fanli.service.inter.count;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | | import java.util.List;
|
| | | import java.util.Map;
|
| | |
|
| | | import com.yeshi.fanli.entity.system.SystemCoupon.CouponTypeEnum;
|
| | | import com.yeshi.fanli.vo.user.SystemCouponVO;
|
| | | import com.yeshi.fanli.vo.user.UserSystemCouponCountVO;
|
| | |
|
| | |
| | | public List<SystemCouponVO> listSystemCouponByFree(long start, int count, String key, Integer sort);
|
| | |
|
| | | public long countSystemCouponFree(String key);
|
| | |
|
| | | |
| | | |
| | | /**
|
| | | * 曲线图-奖励券使用数量
|
| | | * @param dateType
|
| | | * @param year
|
| | | * @param startTime
|
| | | * @param endTime
|
| | | * 根据券类型 统计免单金额
|
| | | * @param typeEnum
|
| | | * @param preDay
|
| | | * @return
|
| | | */
|
| | | public List<Map<String, Object>> getRebateCouponUsedNumToCharts(Integer dateType, String year, String startTime,
|
| | | String endTime);
|
| | | public BigDecimal countFreeMoneyByTypeAndDay(CouponTypeEnum typeEnum, String preDay);
|
| | |
|
| | | /**
|
| | | * 奖励券使用成功金额曲线图
|
| | | * @param dateType
|
| | | * @param year
|
| | | * @param startTime
|
| | | * @param endTime
|
| | | * 统计奖励券成功金额
|
| | | * @param preDay
|
| | | * @return
|
| | | */
|
| | | public List<Map<String, Object>> getRebateCouponMoneyToCharts(Integer dateType, String year, String startTime,
|
| | | String endTime);
|
| | | public BigDecimal countRebateMoneyByDay(String preDay);
|
| | |
|
| | | /**
|
| | | * 统计免单券金额
|
| | | * @param dateType
|
| | | * @param year
|
| | | * @param startTime
|
| | | * @param endTime
|
| | | * @param couponType
|
| | | * 每日新增券数量
|
| | | * @param typeEnum
|
| | | * @param preDay
|
| | | * @return
|
| | | */
|
| | | public List<Map<String, Object>> getFreeCouponMoneyToCharts(Integer dateType, String year, String startTime,
|
| | | String endTime, String couponType);
|
| | | public BigDecimal countCouponNumByDay(CouponTypeEnum typeEnum, String preDay);
|
| | |
|
| | | }
|