mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 04:25:21 +08:00
汇付支付 退款回调记录表
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
package com.jsowell.pile.mapper;
|
||||
|
||||
import com.jsowell.pile.domain.AdapayRefundRecord;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 汇付支付 退款回调记录表
|
||||
*
|
||||
* @author jsowell
|
||||
* @date 2023-05-31
|
||||
*/
|
||||
@Repository
|
||||
public interface AdapayRefundRecordMapper {
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
*
|
||||
* @param id 【请填写功能名称】主键
|
||||
* @return 【请填写功能名称】
|
||||
*/
|
||||
public AdapayRefundRecord selectAdapayRefundRecordById(Integer id);
|
||||
|
||||
/**
|
||||
* 查询【请填写功能名称】列表
|
||||
*
|
||||
* @param adapayRefundRecord 【请填写功能名称】
|
||||
* @return 【请填写功能名称】集合
|
||||
*/
|
||||
public List<AdapayRefundRecord> selectAdapayRefundRecordList(AdapayRefundRecord adapayRefundRecord);
|
||||
|
||||
/**
|
||||
* 新增【请填写功能名称】
|
||||
*
|
||||
* @param adapayRefundRecord 【请填写功能名称】
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertAdapayRefundRecord(AdapayRefundRecord adapayRefundRecord);
|
||||
|
||||
/**
|
||||
* 修改【请填写功能名称】
|
||||
*
|
||||
* @param adapayRefundRecord 【请填写功能名称】
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateAdapayRefundRecord(AdapayRefundRecord adapayRefundRecord);
|
||||
|
||||
/**
|
||||
* 删除【请填写功能名称】
|
||||
*
|
||||
* @param id 【请填写功能名称】主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteAdapayRefundRecordById(Integer id);
|
||||
|
||||
/**
|
||||
* 批量删除【请填写功能名称】
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteAdapayRefundRecordByIds(Integer[] ids);
|
||||
}
|
||||
Reference in New Issue
Block a user