2023-03-04 16:29:55 +08:00
|
|
|
package com.jsowell.pile.mapper;
|
|
|
|
|
|
|
|
|
|
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 WxpayRefundCallbackMapper {
|
|
|
|
|
int deleteByPrimaryKey(Integer id);
|
|
|
|
|
|
|
|
|
|
int insert(WxpayRefundCallback record);
|
|
|
|
|
|
|
|
|
|
int insertSelective(WxpayRefundCallback record);
|
|
|
|
|
|
|
|
|
|
WxpayRefundCallback selectByPrimaryKey(Integer id);
|
|
|
|
|
|
|
|
|
|
int updateByPrimaryKeySelective(WxpayRefundCallback record);
|
|
|
|
|
|
2023-03-07 16:43:19 +08:00
|
|
|
// int updateByPrimaryKey(WxpayRefundCallback record);
|
|
|
|
|
|
|
|
|
|
List<WxpayRefundCallback> selectWxpayRefundCallbackList(List<String> outTradeNoList);
|
2023-03-04 16:29:55 +08:00
|
|
|
}
|