package com.dy.pipIrrGlobal.daoSe; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoSe.SeWalletRecharge; import org.apache.ibatis.annotations.Mapper; /** * @author ZhuBaoMin * @date 2023/12/12 9:06 * @LastEditTime 2023/12/12 9:06 * @Description */ @Mapper public interface SeWalletRechargeMapper extends BaseMapper { int deleteByPrimaryKey(Long id); int insert(SeWalletRecharge record); int insertSelective(SeWalletRecharge record); SeWalletRecharge selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(SeWalletRecharge record); int updateByPrimaryKey(SeWalletRecharge record); }