mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 04:55:08 +08:00
汇付支付 退款回调记录表
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
package com.jsowell.pile.service;
|
||||
|
||||
import com.jsowell.pile.domain.AdapayRefundRecord;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Service接口
|
||||
*
|
||||
* @author jsowell
|
||||
* @date 2023-05-31
|
||||
*/
|
||||
public interface IAdapayRefundRecordService {
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
*
|
||||
* @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 ids 需要删除的【请填写功能名称】主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteAdapayRefundRecordByIds(Integer[] ids);
|
||||
|
||||
/**
|
||||
* 删除【请填写功能名称】信息
|
||||
*
|
||||
* @param id 【请填写功能名称】主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteAdapayRefundRecordById(Integer id);
|
||||
}
|
||||
@@ -0,0 +1,89 @@
|
||||
package com.jsowell.pile.service.impl;
|
||||
|
||||
import com.jsowell.common.util.DateUtils;
|
||||
import com.jsowell.pile.domain.AdapayRefundRecord;
|
||||
import com.jsowell.pile.mapper.AdapayRefundRecordMapper;
|
||||
import com.jsowell.pile.service.IAdapayRefundRecordService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 【请填写功能名称】Service业务层处理
|
||||
*
|
||||
* @author jsowell
|
||||
* @date 2023-05-31
|
||||
*/
|
||||
@Service
|
||||
public class AdapayRefundRecordServiceImpl implements IAdapayRefundRecordService {
|
||||
@Autowired
|
||||
private AdapayRefundRecordMapper adapayRefundRecordMapper;
|
||||
|
||||
/**
|
||||
* 查询【请填写功能名称】
|
||||
*
|
||||
* @param id 【请填写功能名称】主键
|
||||
* @return 【请填写功能名称】
|
||||
*/
|
||||
@Override
|
||||
public AdapayRefundRecord selectAdapayRefundRecordById(Integer id) {
|
||||
return adapayRefundRecordMapper.selectAdapayRefundRecordById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询【请填写功能名称】列表
|
||||
*
|
||||
* @param adapayRefundRecord 【请填写功能名称】
|
||||
* @return 【请填写功能名称】
|
||||
*/
|
||||
@Override
|
||||
public List<AdapayRefundRecord> selectAdapayRefundRecordList(AdapayRefundRecord adapayRefundRecord) {
|
||||
return adapayRefundRecordMapper.selectAdapayRefundRecordList(adapayRefundRecord);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增【请填写功能名称】
|
||||
*
|
||||
* @param adapayRefundRecord 【请填写功能名称】
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int insertAdapayRefundRecord(AdapayRefundRecord adapayRefundRecord) {
|
||||
adapayRefundRecord.setCreateTime(DateUtils.getNowDate());
|
||||
return adapayRefundRecordMapper.insertAdapayRefundRecord(adapayRefundRecord);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改【请填写功能名称】
|
||||
*
|
||||
* @param adapayRefundRecord 【请填写功能名称】
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int updateAdapayRefundRecord(AdapayRefundRecord adapayRefundRecord) {
|
||||
return adapayRefundRecordMapper.updateAdapayRefundRecord(adapayRefundRecord);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除【请填写功能名称】
|
||||
*
|
||||
* @param ids 需要删除的【请填写功能名称】主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteAdapayRefundRecordByIds(Integer[] ids) {
|
||||
return adapayRefundRecordMapper.deleteAdapayRefundRecordByIds(ids);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除【请填写功能名称】信息
|
||||
*
|
||||
* @param id 【请填写功能名称】主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteAdapayRefundRecordById(Integer id) {
|
||||
return adapayRefundRecordMapper.deleteAdapayRefundRecordById(id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user