提现记录表 相关实体类

This commit is contained in:
2023-07-21 16:30:31 +08:00
parent 8279b6805a
commit 64b47f5330
5 changed files with 572 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
package com.jsowell.pile.service;
import java.util.List;
import com.jsowell.pile.domain.ClearingWithdrawInfo;
public interface ClearingWithdrawInfoService{
int deleteByPrimaryKey(Integer id);
int insert(ClearingWithdrawInfo record);
int insertOrUpdate(ClearingWithdrawInfo record);
int insertOrUpdateSelective(ClearingWithdrawInfo record);
int insertSelective(ClearingWithdrawInfo record);
ClearingWithdrawInfo selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(ClearingWithdrawInfo record);
int updateByPrimaryKey(ClearingWithdrawInfo record);
int updateBatch(List<ClearingWithdrawInfo> list);
int batchInsert(List<ClearingWithdrawInfo> list);
}