From 5c03e2dd5afd65c483ef5da8346e78abc29dc7e3 Mon Sep 17 00:00:00 2001 From: admin <weikou2014> Date: 星期三, 01 四月 2020 14:39:54 +0800 Subject: [PATCH] 新增淘客接口,订单返利比例计算相关service修改 --- fanli/src/main/java/com/yeshi/fanli/service/inter/user/invite/ThreeSaleSerivce.java | 46 ++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 44 insertions(+), 2 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/user/invite/ThreeSaleSerivce.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/user/invite/ThreeSaleSerivce.java index 6cdf6b5..98a2986 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/user/invite/ThreeSaleSerivce.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/user/invite/ThreeSaleSerivce.java @@ -19,7 +19,7 @@ */ UserInfo getBoss(long uid); - void bind(UserInfo invitee, UserInfo inviter) throws ThreeSaleException; + void bind(UserInfo worker, UserInfo boss) throws ThreeSaleException; /** * 閭�璇峰叧绯荤敓鏁� @@ -244,7 +244,7 @@ * @param threeSaleOld * @throws ThreeSaleException */ - public void bindRelationshipByWX(UserInfo invitee, Long inviterId, ThreeSale threeSaleOld) throws ThreeSaleException; + public void bindRelationshipByWX(UserInfo invitee, Long inviterId) throws ThreeSaleException; /** * 鏍规嵁涓嬬骇鏌ユ壘瀵硅薄 @@ -299,4 +299,46 @@ */ public ThreeSale getByWorkerIdAndTime(Long workerId, long time); + /** + * 閭�璇峰叧绯昏劚绂� + * @param workerId + * @param bossId + */ + public void inviteSeparate(Long workerId, Long bossId); + + + /* + * 璇ラ槦鍛� 鍦ㄩ槦涓帓绗嚑 + */ + public long getTeamOrderNumByWorkerId(Long workerId); + + /** + * 鏌ヨ鏈�杩戝叧绯� - 鏈夋晥鍒欎紭鍏� + * @param bossId + * @param workerId + * @return + */ + public ThreeSale getNearRelationByBossIdAndWorkerId(Long bossId, Long workerId); + + /** + * 鏍规嵁鏃堕棿绛涢�夊嚭鏈夋晥绮変笣 + * @param bossId + * @param limitTime + * @return + */ + public List<ThreeSale> getValidWorkerIdsByTime(Long bossId, long limitTime); + + + /** + * 鑾峰彇涓婂嚑绾ч個璇蜂汉 + * @Title: getMyBossDeepList + * @Description: + * @param uid + * @param deep 涓奷eep绾� + * @return + * List<ThreeSale> 杩斿洖绫诲瀷 + * @throws + */ + public List<ThreeSale> getMyBossDeepList(Long uid,int deep); + } -- Gitblit v1.8.0