修改余额退款逻辑

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,14 +2,18 @@ package com.jsowell.pile.service;
import com.jsowell.pile.domain.WxpayRefundCallback;
import java.util.List;
public interface WxpayRefundCallbackService {
int deleteByPrimaryKey(Integer id);
// int deleteByPrimaryKey(Integer id);
int insertSelective(WxpayRefundCallback record);
WxpayRefundCallback selectByPrimaryKey(Integer id);
// WxpayRefundCallback selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(WxpayRefundCallback record);
// int updateByPrimaryKeySelective(WxpayRefundCallback record);
int updateByPrimaryKey(WxpayRefundCallback record);
// int updateByPrimaryKey(WxpayRefundCallback record);
List<WxpayRefundCallback> selectWxpayRefundCallbackList(List<String> outTradeNoList);
}