package com.farriver.bwf.data.master.mapper; import com.farriver.bwf.data.master.model.VIPMasterWallet; import com.farriver.bwf.data.master.model.VIPMasterWalletExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface VIPMasterWalletMapper { long countByExample(VIPMasterWalletExample example); int deleteByExample(VIPMasterWalletExample example); int deleteByPrimaryKey(String id); int insert(VIPMasterWallet record); int insertSelective(VIPMasterWallet record); List selectByExample(VIPMasterWalletExample example); VIPMasterWallet selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") VIPMasterWallet record, @Param("example") VIPMasterWalletExample example); int updateByExample(@Param("record") VIPMasterWallet record, @Param("example") VIPMasterWalletExample example); int updateByPrimaryKeySelective(VIPMasterWallet record); int updateByPrimaryKey(VIPMasterWallet record); }