package com.ruoyi.mall.mapper; import java.util.List; import com.ruoyi.mall.domain.MallPayLog; /** * 支付记录Mapper接口 * * @author ruoyi * @date 2021-11-25 */ public interface MallPayLogMapper { /** * 查询支付记录 * * @param id 支付记录主键 * @return 支付记录 */ public MallPayLog selectMallPayLogById(String id); /** * 查询支付记录列表 * * @param mallPayLog 支付记录 * @return 支付记录集合 */ public List selectMallPayLogList(MallPayLog mallPayLog); /** * 新增支付记录 * * @param mallPayLog 支付记录 * @return 结果 */ public int insertMallPayLog(MallPayLog mallPayLog); /** * 修改支付记录 * * @param mallPayLog 支付记录 * @return 结果 */ public int updateMallPayLog(MallPayLog mallPayLog); /** * 删除支付记录 * * @param id 支付记录主键 * @return 结果 */ public int deleteMallPayLogById(String id); /** * 批量删除支付记录 * * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteMallPayLogByIds(String[] ids); }