Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/service/IMemberWalletLogService.java

19 lines
411 B
Java
Raw Normal View History

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
}