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