electripper/electripper-system/src/main/java/com/ruoyi/system/mapper/EtWithdrawMapper.java
18650502300 1250c504b3 1.提现
2.每个停车区单独设置还车误差
3.不骑行的心跳频率改成5分钟
2024-07-01 09:33:39 +08:00

62 lines
1.2 KiB
Java

package com.ruoyi.system.mapper;
import java.util.List;
import com.ruoyi.system.domain.EtWithdraw;
/**
* 提现记录Mapper接口
*
* @author 邱贞招
* @date 2024-06-27
*/
public interface EtWithdrawMapper
{
/**
* 查询提现记录
*
* @param id 提现记录主键
* @return 提现记录
*/
public EtWithdraw selectEtWithdrawById(Long id);
/**
* 查询提现记录列表
*
* @param etWithdraw 提现记录
* @return 提现记录集合
*/
public List<EtWithdraw> selectEtWithdrawList(EtWithdraw etWithdraw);
/**
* 新增提现记录
*
* @param etWithdraw 提现记录
* @return 结果
*/
public int insertEtWithdraw(EtWithdraw etWithdraw);
/**
* 修改提现记录
*
* @param etWithdraw 提现记录
* @return 结果
*/
public int updateEtWithdraw(EtWithdraw etWithdraw);
/**
* 删除提现记录
*
* @param id 提现记录主键
* @return 结果
*/
public int deleteEtWithdrawById(Long id);
/**
* 批量删除提现记录
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteEtWithdrawByIds(Long[] ids);
}