update 获取累计充值金额

This commit is contained in:
2024-03-02 16:45:36 +08:00
parent 6d898a6b54
commit afb27a812d
9 changed files with 126 additions and 13 deletions

View File

@@ -1,6 +1,7 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.MemberWalletInfo;
import com.jsowell.pile.vo.base.MemberWalletVO;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
@@ -69,4 +70,6 @@ public interface MemberWalletInfoMapper {
List<MemberWalletInfo> selectByMemberWalletList(@Param("memberId") String memberId);
MemberWalletInfo selectByWalletCode(@Param("walletCode") String walletCode);
MemberWalletVO selectMemberWalletInfo(String walletCode);
}