2023-03-04 16:29:55 +08:00
|
|
|
package com.jsowell.pile.service;
|
|
|
|
|
|
2023-09-15 14:00:45 +08:00
|
|
|
import com.jsowell.pile.domain.MemberWalletLog;
|
|
|
|
|
|
2023-03-04 16:29:55 +08:00
|
|
|
public interface IMemberWalletLogService {
|
2023-09-15 14:00:45 +08:00
|
|
|
int deleteByPrimaryKey(Integer id);
|
|
|
|
|
|
|
|
|
|
int insert(MemberWalletLog record);
|
|
|
|
|
|
|
|
|
|
int insertSelective(MemberWalletLog record);
|
|
|
|
|
|
|
|
|
|
MemberWalletLog selectByPrimaryKey(Integer id);
|
|
|
|
|
|
|
|
|
|
int updateByPrimaryKeySelective(MemberWalletLog record);
|
|
|
|
|
|
|
|
|
|
int updateByPrimaryKey(MemberWalletLog record);
|
2023-03-04 16:29:55 +08:00
|
|
|
|
2023-09-15 14:25:51 +08:00
|
|
|
MemberWalletLog getOrderRecord(String orderCode, String type);
|
2023-03-04 16:29:55 +08:00
|
|
|
}
|