From d08ec8845a4c2663b3502cd83872964b07d7d589 Mon Sep 17 00:00:00 2001 From: jyy <935090232@qq.com> Date: Mon, 22 Mar 2021 11:14:52 +0800 Subject: [PATCH] 积分商城11 --- zq-erp/src/main/java/com/matrix/system/score/dao/ScoreVipDetailDao.java | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/score/dao/ScoreVipDetailDao.java b/zq-erp/src/main/java/com/matrix/system/score/dao/ScoreVipDetailDao.java index ec22abe..1f0ed56 100644 --- a/zq-erp/src/main/java/com/matrix/system/score/dao/ScoreVipDetailDao.java +++ b/zq-erp/src/main/java/com/matrix/system/score/dao/ScoreVipDetailDao.java @@ -2,6 +2,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.matrix.system.score.entity.ScoreVipDetail; +import org.apache.ibatis.annotations.Param; import java.util.List; @@ -18,12 +19,12 @@ * @param vipId * @return */ - int selectUserTotalScore(String openId, Long vipId); + int selectUserTotalScore(@Param("openId") String openId, @Param("openId")Long vipId); /** * 查询用户有效的积分,按时间顺序排 * @param * @return */ - List<ScoreVipDetail> selectEffectiveScore(String openId, Long vipId); + List<ScoreVipDetail> selectEffectiveScore(@Param("openId") String openId, @Param("openId")Long vipId); } \ No newline at end of file -- Gitblit v1.9.1