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