From 0c78c7aaeaa5a427bc8a5c5faf3cd6bbb589c2da Mon Sep 17 00:00:00 2001 From: yujian <yujian@123.com> Date: 星期二, 08 十月 2019 12:08:38 +0800 Subject: [PATCH] map 改造 --- fanli/src/main/java/com/yeshi/fanli/dao/mybatis/user/UserSystemCouponCountMapper.java | 292 +++++++++++++++++++++++++++++----------------------------- 1 files changed, 146 insertions(+), 146 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/dao/mybatis/user/UserSystemCouponCountMapper.java b/fanli/src/main/java/com/yeshi/fanli/dao/mybatis/user/UserSystemCouponCountMapper.java index f664b9a..a1f0fa7 100644 --- a/fanli/src/main/java/com/yeshi/fanli/dao/mybatis/user/UserSystemCouponCountMapper.java +++ b/fanli/src/main/java/com/yeshi/fanli/dao/mybatis/user/UserSystemCouponCountMapper.java @@ -1,147 +1,147 @@ -package com.yeshi.fanli.dao.mybatis.user; - -import java.math.BigDecimal; -import java.util.List; -import java.util.Map; - -import org.apache.ibatis.annotations.Param; - -import com.yeshi.fanli.entity.bus.user.UserSystemCouponRecord; -import com.yeshi.fanli.vo.user.SystemCouponVO; -import com.yeshi.fanli.vo.user.UserSystemCouponCountVO; - -public interface UserSystemCouponCountMapper { - - /** - * 濂栧姳鍒哥粺璁� - * @param start - * @param count - * @param key - * @param keyType - * @param state - * @param percent - * @return - */ - List<UserSystemCouponCountVO> listRebateCoupon(@Param("start") long start, @Param("count") int count, - @Param("key") String key, @Param("keyType") Integer keyType, - @Param("state") Integer state, @Param("percent") Integer percent); - - Long countRebateCoupon(@Param("key") String key, @Param("keyType") Integer keyType, - @Param("state") Integer state, @Param("percent") Integer percent); - - - /** - * 绯荤粺濂栧姳鍒哥粺璁� - * @param start - * @param count - * @param key - * @param keyType - * @param state - * @param percent - * @return - */ - List<SystemCouponVO> listSystemCouponByRebate(@Param("start") long start, @Param("count") int count, - @Param("key") String key, @Param("sort") Integer sort); - - Long countSystemCouponRebate(@Param("key") String key); - - /** - * 缁熻濂栧姳閲戦 - * @return - */ - BigDecimal countRebateMoneyByCouponId(@Param("couponId") Long couponId); - - - /** - * 绯荤粺濂栧姳鍒哥粺璁� - * @param start - * @param count - * @param key - * @param keyType - * @param state - * @param percent - * @return - */ - List<SystemCouponVO> listSystemCouponByFree(@Param("start") long start, @Param("count") int count, - @Param("key") String key, @Param("sort") Integer sort); - - Long countSystemCouponFree(@Param("key") String key); - - /** - * 缁熻鍏嶅崟閲戦 - * @return - */ - BigDecimal countFreeMoneyByCouponId(@Param("couponId") Long couponId); - - - /** - * 鍏嶅崟鍒� - * @param start - * @param count - * @param key - * @param keyType - * @param state - * @param percent - * @return - */ - List<UserSystemCouponCountVO> listFreeCoupon(@Param("start") long start, @Param("count") int count, - @Param("key") String key, @Param("keyType") Integer keyType, - @Param("state") Integer state, @Param("activated") Integer activated); - - Long countFreeCoupon(@Param("key") String key, @Param("keyType") Integer keyType, - @Param("state") Integer state, @Param("activated") Integer activated); - - - /** - * 鍏嶅崟鍒镐娇鐢ㄨ褰� - * @param start - * @param count - * @param key - * @param keyType - * @param state - * @param percent - * @return - */ - List<UserSystemCouponRecord> listFreeCouponRecord(@Param("start") long start, @Param("count") int count, - @Param("key") String key, @Param("keyType") Integer keyType, - @Param("state") Integer state); - - Long countFreeCouponRecord(@Param("key") String key, @Param("keyType") Integer keyType, - @Param("state") Integer state); - - /** - * 濂栧姳鍒镐娇鐢ㄦ暟閲忔洸绾垮浘 - * @param dateType - * @param year - * @param startTime - * @param endTime - * @return - */ - List<Map<String, Object>> 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 - * @return - */ - List<Map<String, Object>> getRebateCouponMoneyToCharts(@Param("dateType") Integer dateType, @Param("year") String year, - @Param("startTime")String startTime, @Param("endTime")String endTime); - - - /** - * 濂栧姳鍒镐娇鐢ㄦ垚鍔熼噾棰濇洸绾垮浘 - * @param dateType - * @param year - * @param startTime - * @param endTime - * @return - */ - List<Map<String, Object>> getFreeCouponMoneyToCharts(@Param("dateType") Integer dateType, @Param("year") String year, - @Param("startTime")String startTime, @Param("endTime")String endTime, @Param("couponType")String couponType); - +package com.yeshi.fanli.dao.mybatis.user; + +import java.math.BigDecimal; +import java.util.List; + +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; + +public interface UserSystemCouponCountMapper { + + /** + * 濂栧姳鍒哥粺璁� + * @param start + * @param count + * @param key + * @param keyType + * @param state + * @param percent + * @return + */ + List<UserSystemCouponCountVO> listRebateCoupon(@Param("start") long start, @Param("count") int count, + @Param("key") String key, @Param("keyType") Integer keyType, + @Param("state") Integer state, @Param("percent") Integer percent); + + Long countRebateCoupon(@Param("key") String key, @Param("keyType") Integer keyType, + @Param("state") Integer state, @Param("percent") Integer percent); + + + /** + * 绯荤粺濂栧姳鍒哥粺璁� + * @param start + * @param count + * @param key + * @param keyType + * @param state + * @param percent + * @return + */ + List<SystemCouponVO> listSystemCouponByRebate(@Param("start") long start, @Param("count") int count, + @Param("key") String key, @Param("sort") Integer sort); + + Long countSystemCouponRebate(@Param("key") String key); + + /** + * 缁熻濂栧姳閲戦 + * @return + */ + BigDecimal countRebateMoneyByCouponId(@Param("couponId") Long couponId); + + + /** + * 绯荤粺濂栧姳鍒哥粺璁� + * @param start + * @param count + * @param key + * @param keyType + * @param state + * @param percent + * @return + */ + List<SystemCouponVO> listSystemCouponByFree(@Param("start") long start, @Param("count") int count, + @Param("key") String key, @Param("sort") Integer sort); + + Long countSystemCouponFree(@Param("key") String key); + + /** + * 缁熻鍏嶅崟閲戦 + * @return + */ + BigDecimal countFreeMoneyByCouponId(@Param("couponId") Long couponId); + + + /** + * 鍏嶅崟鍒� + * @param start + * @param count + * @param key + * @param keyType + * @param state + * @param percent + * @return + */ + List<UserSystemCouponCountVO> listFreeCoupon(@Param("start") long start, @Param("count") int count, + @Param("key") String key, @Param("keyType") Integer keyType, + @Param("state") Integer state, @Param("activated") Integer activated); + + Long countFreeCoupon(@Param("key") String key, @Param("keyType") Integer keyType, + @Param("state") Integer state, @Param("activated") Integer activated); + + + /** + * 鍏嶅崟鍒镐娇鐢ㄨ褰� + * @param start + * @param count + * @param key + * @param keyType + * @param state + * @param percent + * @return + */ + List<UserSystemCouponRecord> listFreeCouponRecord(@Param("start") long start, @Param("count") int count, + @Param("key") String key, @Param("keyType") Integer keyType, + @Param("state") Integer state); + + 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 + * @return + */ + List<ChartTDO> getRebateCouponMoneyToCharts(@Param("dateType") Integer dateType, @Param("year") String year, + @Param("startTime")String startTime, @Param("endTime")String endTime); + + + /** + * 濂栧姳鍒镐娇鐢ㄦ垚鍔熼噾棰濇洸绾垮浘 + * @param dateType + * @param year + * @param startTime + * @param endTime + * @return + */ + List<ChartTDO> getFreeCouponMoneyToCharts(@Param("dateType") Integer dateType, @Param("year") String year, + @Param("startTime")String startTime, @Param("endTime")String endTime, @Param("couponType")String couponType); + } \ No newline at end of file -- Gitblit v1.8.0