修改余额退款逻辑

This commit is contained in:
2023-03-07 16:43:19 +08:00
parent f4fe4e74c2
commit 3035eb547b
6 changed files with 164 additions and 27 deletions

View File

@@ -2,6 +2,8 @@ package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.WxpayRefundCallback;
import java.util.List;
public interface WxpayRefundCallbackMapper {
int deleteByPrimaryKey(Integer id);
@@ -13,5 +15,7 @@ public interface WxpayRefundCallbackMapper {
int updateByPrimaryKeySelective(WxpayRefundCallback record);
int updateByPrimaryKey(WxpayRefundCallback record);
// int updateByPrimaryKey(WxpayRefundCallback record);
List<WxpayRefundCallback> selectWxpayRefundCallbackList(List<String> outTradeNoList);
}