后管充值本金

This commit is contained in:
2023-11-08 11:28:57 +08:00
parent 97303f638b
commit 915edc47ad
8 changed files with 581 additions and 179 deletions

View File

@@ -0,0 +1,34 @@
package com.jsowell.pile.service;
import com.jsowell.pile.domain.MemberWalletLog;
import java.util.List;
public interface MemberWalletLogService {
int deleteByPrimaryKey(Integer id);
int insert(MemberWalletLog record);
int insertSelective(MemberWalletLog record);
MemberWalletLog selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(MemberWalletLog record);
int updateByPrimaryKey(MemberWalletLog record);
int insertOrUpdate(MemberWalletLog record);
int insertOrUpdateSelective(MemberWalletLog record);
int updateBatch(List<MemberWalletLog> list);
int updateBatchSelective(List<MemberWalletLog> list);
int batchInsert(List<MemberWalletLog> list);
MemberWalletLog getOrderRecord(String orderCode, String type);
}