From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 25 二月 2025 16:41:22 +0800
Subject: [PATCH] 淘宝转链接口更新

---
 fanli/src/main/java/com/yeshi/fanli/dao/mybatis/user/UserSystemCouponCountMapper.java |  286 +++++++++++++++++++++++++++++---------------------------
 1 files changed, 148 insertions(+), 138 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 efe4f25..58dd795 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,139 +1,149 @@
-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.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 type
-	 * @param preDay
-	 * @return
-	 */
-	BigDecimal countRebateMoneyByDay(@Param("preDay") String preDay);
-	
-	
-	/**
-	 * 缁熻鍏嶅崟閲戦鎴愬姛閲戦
-	 * @param type
-	 * @param preDay
-	 * @return
-	 */
-	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);
-	
+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.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 type
+	 * @param preDay
+	 * @return
+	 */
+	BigDecimal countRebateMoneyByDay(@Param("preDay") String preDay);
+	
+	
+	/**
+	 * 缁熻鍏嶅崟閲戦鎴愬姛閲戦
+	 * @param type
+	 * @param preDay
+	 * @return
+	 */
+	BigDecimal countFreeMoneyByTypeAndDay(@Param("type") String type, @Param("preDay") String preDay, @Param("source") String source);
+	
+	
+	/**
+	 * 缁熻鍒告瘡鏃ユ柊澧炴暟閲�
+	 * @param type
+	 * @param preDay
+	 * @return
+	 */
+	BigDecimal countCouponNumByDay(@Param("type") String type, @Param("preDay") String preDay, @Param("source") String source);
+	
+	
+	/**
+	 * 缁熻鍒告暟閲�
+	 * @param state
+	 * @param activated
+	 * @param list
+	 * @return
+	 */
+	Long countCouponNum(@Param("uid")Long uid,  @Param("state") Integer state, @Param("activated") Integer activated,
+			@Param("list")List<String> list, @Param("listSource")List<String> listSource);
 }
\ No newline at end of file

--
Gitblit v1.8.0