From ae2294be876ac4595d7b31b36c0057726d12354f Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期五, 14 五月 2021 16:11:16 +0800
Subject: [PATCH] 淘宝券后价计算方法名称修改
---
fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushInfoService.java | 142 +++++++++++++++++++++++++----------------------
1 files changed, 76 insertions(+), 66 deletions(-)
diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushInfoService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushInfoService.java
index 83b13a4..70138ee 100644
--- a/fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushInfoService.java
+++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/push/PushInfoService.java
@@ -1,66 +1,76 @@
-package com.yeshi.fanli.service.inter.push;
-
-import java.util.List;
-
-import com.yeshi.fanli.entity.push.PushInfo;
-import com.yeshi.fanli.exception.push.PushCouponException;
-import com.yeshi.fanli.exception.push.PushException;
-import com.yeshi.fanli.exception.push.PushInfoException;
-
-public interface PushInfoService {
-
- public void deleteBatchByPrimaryKey(List<Long> list);
-
-
- public void save(PushInfo record) throws PushInfoException,Exception;
-
-
- /**
- * 鍚庣鏌ヨ
- * @param start
- * @param count
- * @param key
- * @param keyType
- * @param state
- * @return
- */
- public List<PushInfo> listQuery(long start, int count, String key, Integer keyType, Integer state, String type);
-
- public long countQuery(String key, Integer keyType, Integer state, String type);
-
-
- /**
- * 鍚庣鎵嬪姩鎺ㄩ��
- * @param id
- * @throws Exception
- * @throws PushInfoException
- * @throws PushException
- */
- public void handPush(Long id) throws Exception, PushInfoException, PushException;
-
-
- /**
- * 鎵ц鎺ㄩ��
- * @param id
- * @throws Exception
- * @throws PushCouponException
- * @throws PushException
- */
- public void executePush(PushInfo pushInfo) throws Exception, PushInfoException, PushException;
-
-
- /**
- * 闇�瑕佹帹閫佺殑浠诲姟
- * @return
- */
- public List<PushInfo> listTask();
-
-
- /**
- *瀹氭椂浠诲姟鎺ㄩ��
- * @param record
- */
- public void taskPush(PushInfo record);
-
-
-}
+package com.yeshi.fanli.service.inter.push;
+
+import java.util.List;
+
+import com.yeshi.fanli.entity.SystemEnum;
+import com.yeshi.fanli.entity.push.PushInfo;
+import com.yeshi.fanli.exception.push.PushCouponException;
+import com.yeshi.fanli.exception.push.PushException;
+import com.yeshi.fanli.exception.push.PushInfoException;
+
+public interface PushInfoService {
+
+ public void deleteBatchByPrimaryKey(List<Long> list);
+
+
+ public void save(PushInfo record) throws PushInfoException, Exception;
+
+
+ /**
+ * 鍚庣鏌ヨ
+ *
+ * @param start
+ * @param count
+ * @param key
+ * @param keyType
+ * @param state
+ * @return
+ */
+ public List<PushInfo> listQuery(long start, int count, String key, Integer keyType, Integer state, String type, SystemEnum system);
+
+ public long countQuery(String key, Integer keyType, Integer state, String type, SystemEnum system);
+
+
+ /**
+ * 鍚庣鎵嬪姩鎺ㄩ��
+ *
+ * @param id
+ * @throws Exception
+ * @throws PushInfoException
+ * @throws PushException
+ */
+ public void handPush(Long id) throws Exception, PushInfoException, PushException;
+
+
+ /**
+ * 鎵ц鎺ㄩ��
+ *
+ * @param id
+ * @throws Exception
+ * @throws PushCouponException
+ * @throws PushException
+ */
+ public void executePush(PushInfo pushInfo) throws Exception, PushInfoException, PushException;
+
+
+ /**
+ * 闇�瑕佹帹閫佺殑浠诲姟
+ *
+ * @return
+ */
+ public List<PushInfo> listTask(SystemEnum system);
+
+
+ /**
+ * 瀹氭椂浠诲姟鎺ㄩ��
+ *
+ * @param record
+ */
+ public void taskPush(PushInfo record);
+
+ public PushInfo selectByPrimaryKey(Long id);
+
+ public void updateSelectiveByPrimaryKey(PushInfo info);
+
+
+}
--
Gitblit v1.8.0