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

22 lines
598 B
Java
Raw Normal View History

2023-03-04 16:29:55 +08:00
package com.jsowell.pile.service;
import com.jsowell.pile.domain.WxpayRefundCallback;
2023-03-07 16:43:19 +08:00
import java.util.List;
2023-03-04 16:29:55 +08:00
public interface WxpayRefundCallbackService {
2023-03-07 16:43:19 +08:00
// int deleteByPrimaryKey(Integer id);
2023-03-04 16:29:55 +08:00
int insertSelective(WxpayRefundCallback record);
2023-03-07 16:43:19 +08:00
// WxpayRefundCallback selectByPrimaryKey(Integer id);
// int updateByPrimaryKeySelective(WxpayRefundCallback record);
2023-03-04 16:29:55 +08:00
2023-03-07 16:43:19 +08:00
// int updateByPrimaryKey(WxpayRefundCallback record);
2023-03-04 16:29:55 +08:00
2023-03-07 16:43:19 +08:00
List<WxpayRefundCallback> selectWxpayRefundCallbackList(List<String> outTradeNoList);
2023-05-31 13:59:27 +08:00
List<WxpayRefundCallback> selectByOrderCodeList(List<String> orderCodeList);
2023-03-04 16:29:55 +08:00
}