修改service名称

This commit is contained in:
2023-11-08 15:59:11 +08:00
parent 968e48ba18
commit 3a66b4b540
3 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
package com.jsowell.pile.service;
import com.jsowell.pile.domain.MemberWalletInfo;
public interface MemberWalletInfoService {
int deleteByPrimaryKey(Integer id);
int insert(MemberWalletInfo record);
int insertSelective(MemberWalletInfo record);
MemberWalletInfo selectByPrimaryKey(Integer id);
MemberWalletInfo selectByMemberId(String memberId);
int updateByPrimaryKeySelective(MemberWalletInfo record);
int updateByPrimaryKey(MemberWalletInfo record);
}