From ec8a1c6f81b5747e9efce86faaba33d10df7f61d Mon Sep 17 00:00:00 2001 From: admin <2780501319@qq.com> Date: 星期日, 01 三月 2020 16:37:26 +0800 Subject: [PATCH] 动态提示语调整 --- fanli/src/main/java/com/yeshi/fanli/service/inter/redpack/RedPackWinInviteService.java | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 51 insertions(+), 2 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/redpack/RedPackWinInviteService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/redpack/RedPackWinInviteService.java index bf4e204..9e892fe 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/redpack/RedPackWinInviteService.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/redpack/RedPackWinInviteService.java @@ -1,19 +1,21 @@ package com.yeshi.fanli.service.inter.redpack; +import java.math.BigDecimal; import java.util.List; import com.yeshi.fanli.entity.redpack.RedPackWinInvite; +import com.yeshi.fanli.vo.redpack.RedPackWinProgressVO; public interface RedPackWinInviteService { /** - * 璁㈠崟鍒拌处-鐩稿叧濂栧姳 + * 閭�璇疯鍗曞埌璐�-鐩稿叧濂栧姳 * @param uid * @param inviteeUid * @param source * @param orderNo */ - public void orderArriveReward(Long uid, Integer source, String orderNo) throws Exception; + public void inviteOrderArriveReward(Long uid, Integer source, String orderNo) throws Exception; /** * 鏌ヨ鑾峰緱璁板綍 @@ -30,5 +32,52 @@ * @return */ public Long countRewardRecord(Long uid); + + /** + * 閭�璇锋垚鍔熷鍔� + * @param uid + * @throws Exception + */ + public void inviteSucceedReward(Long uid) throws Exception; + + /** + * 缁熻鎬婚鍙栭噾棰� + * @param uid + * @return + */ + public BigDecimal getRewardMoney(Long uid); + + + /** + * 閭�璇疯繘搴� + 濂栧姳 + * @param uid + * @return + */ + public List<RedPackWinProgressVO> getInviteProgressByWorkerId(Long uid, Long tid); + + + /** + * 濂栭噾鎺掕-闃熷憳 + * @param uid + * @return + */ + public List<RedPackWinInvite> getWinTopListByBossId(int page, int count, Long uid); + + public long countWinTopListByBossId(Long uid); + + /** + * 鍒濆鍖栫孩鍖呬竴闃舵 + * @param bossId + * @param teamUid + */ + public void initCreateRedPackWin(Long bossId, Long teamUid); + + /** + * 绗嚑涓椿鍔ㄥソ鍙� + * @param uid + * @param teamUid + * @return + */ + public long countTeamNumByTid(Long uid, Long teamUid); } -- Gitblit v1.8.0