This commit is contained in:
2023-11-09 09:15:47 +08:00
parent 29ca0d6e9c
commit 82bd7db8b8
10 changed files with 48 additions and 14 deletions

View File

@@ -1,6 +1,7 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.MemberWalletInfo;
import org.apache.ibatis.annotations.Param;
public interface MemberWalletInfoMapper {
/**
@@ -51,5 +52,7 @@ public interface MemberWalletInfoMapper {
*/
int updateByPrimaryKey(MemberWalletInfo record);
MemberWalletInfo selectByMemberId(String memberId);
// MemberWalletInfo selectByMemberId(String memberId);
MemberWalletInfo selectByMemberId(@Param("memberId") String memberId, @Param("merchantId") String merchantId);
}