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