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/service/inter/push/PushCouponService.java |  113 ++++++++++++++++++++++++++++----------------------------
 1 files changed, 57 insertions(+), 56 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushCouponService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushCouponService.java
index cfa6c44..a8e917f 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushCouponService.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushCouponService.java
@@ -1,56 +1,57 @@
-package com.yeshi.fanli.service.inter.push;
-
-import java.util.List;
-
-import com.yeshi.fanli.entity.push.PushCoupon;
-import com.yeshi.fanli.exception.push.PushCouponException;
-import com.yeshi.fanli.exception.push.PushException;
-
-public interface PushCouponService {
-
-	public int deleteByPrimaryKey(Long id);
-
-	public int insert(PushCoupon record);
-
-	public int insertSelective(PushCoupon record);
-
-	public PushCoupon selectByPrimaryKey(Long id);
-
-	public int updateByPrimaryKeySelective(PushCoupon record);
-
-	public int updateByPrimaryKey(PushCoupon record);
-
-	public void deleteBatchByPrimaryKey(List<Long> list);
-	
-	/**
-	 * 鍚庣鍒楄〃鏌ヨ
-	 * @param start
-	 * @param count
-	 * @param key
-	 * @return
-	 */
-	public List<PushCoupon> listQuery(long start, int count, String key, Integer state);
-	
-	public long countQuery(String key, Integer state) throws PushCouponException;
-	
-
-	public void save(PushCoupon record) throws PushCouponException, Exception;
-
-	/**
-	 * 鎵ц鎺ㄩ��
-	 * @param id
-	 * @throws Exception
-	 * @throws PushCouponException
-	 * @throws PushException
-	 */
-	public void executePush(Long id) throws Exception, PushCouponException, PushException;
-	
-	
-	/**
-	 *  鏈夋晥娲诲姩
-	 * @return
-	 */
-	public List<PushCoupon> listQueryEffective();
-
-	
-}
+package com.yeshi.fanli.service.inter.push;
+
+import java.util.List;
+
+import com.yeshi.fanli.entity.SystemEnum;
+import com.yeshi.fanli.entity.push.PushCoupon;
+import com.yeshi.fanli.exception.push.PushCouponException;
+import com.yeshi.fanli.exception.push.PushException;
+
+public interface PushCouponService {
+
+	public int deleteByPrimaryKey(Long id);
+
+	public int insert(PushCoupon record);
+
+	public int insertSelective(PushCoupon record);
+
+	public PushCoupon selectByPrimaryKey(Long id);
+
+	public int updateByPrimaryKeySelective(PushCoupon record);
+
+	public int updateByPrimaryKey(PushCoupon record);
+
+	public void deleteBatchByPrimaryKey(List<Long> list);
+	
+	/**
+	 * 鍚庣鍒楄〃鏌ヨ
+	 * @param start
+	 * @param count
+	 * @param key
+	 * @return
+	 */
+	public List<PushCoupon> listQuery(long start, int count, String key, Integer state, SystemEnum system);
+	
+	public long countQuery(String key, Integer state, SystemEnum system) throws PushCouponException;
+	
+
+	public void save(PushCoupon record) throws PushCouponException, Exception;
+
+	/**
+	 * 鎵ц鎺ㄩ��
+	 * @param id
+	 * @throws Exception
+	 * @throws PushCouponException
+	 * @throws PushException
+	 */
+	public void executePush(Long id) throws Exception, PushCouponException, PushException;
+	
+	
+	/**
+	 *  鏈夋晥娲诲姩
+	 * @return
+	 */
+	public List<PushCoupon> listQueryEffective( SystemEnum system);
+
+	
+}

--
Gitblit v1.8.0