From 39c683421f75449c7a85280fa499bae3a2f5241b Mon Sep 17 00:00:00 2001 From: yujian <yujian@123.com> Date: 星期一, 26 八月 2019 09:27:49 +0800 Subject: [PATCH] 金币领取 --- fanli/src/main/java/com/yeshi/fanli/service/inter/integral/IntegralGetService.java | 133 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 131 insertions(+), 2 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/integral/IntegralGetService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/integral/IntegralGetService.java index cb2dc8c..1a62a71 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/integral/IntegralGetService.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/integral/IntegralGetService.java @@ -1,5 +1,6 @@ package com.yeshi.fanli.service.inter.integral; +import com.yeshi.fanli.entity.integral.IntegralTaskRecord; import com.yeshi.fanli.exception.integral.IntegralGetException; import net.sf.json.JSONObject; @@ -22,7 +23,7 @@ * 浜嬩欢缂栫爜 * @throws IntegralGetException */ - public void addEventStatistic(Long uid, String event, JSONObject params) throws IntegralGetException; + public IntegralTaskRecord addEventStatistic(Long uid, String event, JSONObject params) throws IntegralGetException; /** * 浠庣矘璐存澘鎺ㄨ崘杩涘叆鎼滅储缁撴灉 @@ -38,7 +39,7 @@ * @param uid * @throws IntegralGetException */ - public void addSearchResultScan(Long uid) throws IntegralGetException; + public void addSearchResultScan(Long uid,String kw) throws IntegralGetException; /** * 鍒嗕韩閭�璇峰浘 @@ -94,4 +95,132 @@ */ public void addScanTaoBaoCart(Long uid); + /** + * 鑷喘绔嬪噺 + * @param uid + */ + public void addTaoLiJinBuy(Long uid, Long goodsId); + + /** + * 鐩存帴閭�璇� + * @param uid + * @param goodsId + */ + public void addInviteLevelOne(Long uid, Long workerId); + + + /** + * 鍗曚釜鍟嗗搧鍒嗕韩 + * @param uid + */ + public void addShareSingleGoods(Long uid); + + /** + * 澶氫釜鍟嗗搧鍒嗕韩 + * @param uid + */ + public void addShareMultipleGoods(Long uid); + + /** + * 鍒嗕韩鐖嗘鍟嗗搧 + * @param uid + */ + public void addShareTLJGoods(Long uid); + + /** + * 璧犻�佸鍔卞埜 + * @param uid + */ + public void addGiveRebateCoupon(Long uid); + + /** + * 璧犻�佸厤鍗曞埜 + * @param uid + */ + public void addGiveFreeCoupon(Long uid); + + /** + * 璧犻�佹帹骞跨孩鍖� + * @param uid + */ + public void addGiveTaoLiJin(Long uid); + + /** + * 鍏抽棴 涓嶅枩娆㈠晢鍝� + * @param uid + */ + public void addCloseRecommendGoods(Long uid); + + /** + * 棰嗗埜杩斿埄 + * @param uid + */ + public void addCouponRebate(Long uid); + + /** + * 杩斿埄璁㈠崟 + * @param uid + */ + public void addRebateOrder(Long uid); + + /** + * 鍒嗕韩璁㈠崟 + * @param uid + */ + public void addShareOrder(Long uid); + + /** + * 寰俊鎺堟潈 + * @param uid + */ + public void addBindWeiXin(Long uid); + + /** + * 缁戝畾鎵嬫満 + * @param uid + */ + public void addBindPhone(Long uid); + + /** + * 娣樺疂鎺堟潈 + * @param uid + */ + public void addBindTaoBao(Long uid); + + /** + * 娣诲姞寰俊鍙� + * @param uid + */ + public void addSetWeiXinNum(Long uid); + + /** + * 璁剧疆鎬у埆 + * @param uid + */ + public void addSetGender(Long uid); + + /** + * 淇敼澶村儚 + * @param uid + */ + public void addSetPortrait(Long uid); + + /** + * 淇敼鏄电О + * @param uid + */ + public void addSetNickname(Long uid); + + /** + * 缁戝畾鏀粯瀹� + * @param uid + */ + public void addBindAlipay(Long uid); + + /** + * 婵�娲婚個璇� + * @param uid + */ + public void addInviteActivate(Long uid); + } -- Gitblit v1.8.0