From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期一, 09 六月 2025 11:54:00 +0800 Subject: [PATCH] 6.9新增登录失败冻结逻辑 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActIntegralUserService.java | 36 +++++++++++++++++++++++++++++++++--- 1 files changed, 33 insertions(+), 3 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActIntegralUserService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActIntegralUserService.java index 2d3bf99..d505f2b 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActIntegralUserService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActIntegralUserService.java @@ -3,7 +3,9 @@ import com.baomidou.mybatisplus.extension.service.IService; import com.panzhihua.common.model.dtos.community.integral.ComActIntegralCommunityRankDTO; import com.panzhihua.common.model.vos.R; +import com.panzhihua.common.model.vos.community.integral.IntegralUserRankVO; import com.panzhihua.service_community.model.dos.ComActIntegralUserDO; +import org.apache.ibatis.annotations.Param; /** * @auther lyq @@ -31,7 +33,7 @@ R getIntegralReceiveApplets(Long userId, Long communityId); /** - * 小程序-查询用户积分列表 + * 小程序-积分统计 * * @param userId * 用户id @@ -49,12 +51,40 @@ R getIntegralCommunityRankApplets(ComActIntegralCommunityRankDTO communityRankDTO); /** - * 根据社区活动id查询社区活动报名人员列表 + * 根据社区活动id查询社区活动报名且未参与人员列表 * * @param activityId * 活动id - * @return 社区活动报名人员列表 + * @return 社区活动报名且未参与人员列表 */ R getTaskActivityPeopleList(Long activityId); + /** + * 查询我的积分余额 + * @param userId + * @param communityId + * @return + */ + R getUserIntegralBalance(Long userId, Long communityId); + + /** + * 获取积分详情 + * @param id + * @return + */ + R getUserIntegralDetail(Long id); + + + /** + * 小程序-查询用户在当前社区积分排名 + * + * @param userId + * 用户id + * @param communityId + * 社区id + * @return 用户在当前社区积分排名 + */ + IntegralUserRankVO getIntegralUserRank(Long communityId,Long userId); + + } -- Gitblit v1.7.1