mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 22:15:06 +08:00
update 会员钱包
This commit is contained in:
@@ -16,7 +16,9 @@ public interface MemberWalletInfoService {
|
||||
|
||||
MemberWalletInfo selectByMemberId(String memberId, String merchantId);
|
||||
|
||||
int updateByPrimaryKeySelective(MemberWalletInfo record);
|
||||
MemberWalletInfo selectByWalletCode(String walletCode);
|
||||
|
||||
int updateByPrimaryKeySelective(MemberWalletInfo record);
|
||||
|
||||
int updateByPrimaryKey(MemberWalletInfo record);
|
||||
|
||||
|
||||
@@ -48,6 +48,11 @@ public class MemberWalletInfoServiceImpl implements MemberWalletInfoService {
|
||||
return memberWalletInfoMapper.selectByMemberId(memberId, merchantId);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MemberWalletInfo selectByWalletCode(String walletCode) {
|
||||
return memberWalletInfoMapper.selectByWalletCode(walletCode);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int updateByPrimaryKeySelective(MemberWalletInfo record) {
|
||||
return memberWalletInfoMapper.updateByPrimaryKeySelective(record);
|
||||
|
||||
Reference in New Issue
Block a user