2023-03-04 16:29:55 +08:00
|
|
|
package com.jsowell.pile.service;
|
|
|
|
|
|
|
|
|
|
import com.jsowell.pile.domain.MemberWalletInfo;
|
|
|
|
|
|
2023-11-08 15:59:11 +08:00
|
|
|
public interface MemberWalletInfoService {
|
2023-03-04 16:29:55 +08:00
|
|
|
int deleteByPrimaryKey(Integer id);
|
|
|
|
|
|
|
|
|
|
int insert(MemberWalletInfo record);
|
|
|
|
|
|
|
|
|
|
int insertSelective(MemberWalletInfo record);
|
|
|
|
|
|
|
|
|
|
MemberWalletInfo selectByPrimaryKey(Integer id);
|
|
|
|
|
|
2023-11-09 09:15:47 +08:00
|
|
|
MemberWalletInfo selectByMemberId(String memberId, String merchantId);
|
2023-07-24 15:32:19 +08:00
|
|
|
|
2023-03-04 16:29:55 +08:00
|
|
|
int updateByPrimaryKeySelective(MemberWalletInfo record);
|
|
|
|
|
|
|
|
|
|
int updateByPrimaryKey(MemberWalletInfo record);
|
|
|
|
|
}
|