update 取现成功支付回调

This commit is contained in:
2023-08-08 14:16:05 +08:00
parent 304ba6b2e1
commit ce92d1ccdf
6 changed files with 47 additions and 13 deletions

View File

@@ -1,9 +1,10 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.ClearingWithdrawInfo;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface ClearingWithdrawInfoMapper {
/**
* delete by primary key
@@ -54,4 +55,6 @@ public interface ClearingWithdrawInfoMapper {
int updateBatch(List<ClearingWithdrawInfo> list);
int batchInsert(@Param("list") List<ClearingWithdrawInfo> list);
ClearingWithdrawInfo selectByWithdrawCode(String withdrawCode);
}