package com.macro.mall.mapper; import com.macro.mall.model.CmsHelp; import com.macro.mall.model.CmsHelpExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface CmsHelpMapper { long countByExample(CmsHelpExample example); int deleteByExample(CmsHelpExample example); int deleteByPrimaryKey(Long id); int insert(CmsHelp record); int insertSelective(CmsHelp record); List selectByExampleWithBLOBs(CmsHelpExample example); List selectByExample(CmsHelpExample example); CmsHelp selectByPrimaryKey(Long id); int updateByExampleSelective(@Param("record") CmsHelp record, @Param("example") CmsHelpExample example); int updateByExampleWithBLOBs(@Param("record") CmsHelp record, @Param("example") CmsHelpExample example); int updateByExample(@Param("record") CmsHelp record, @Param("example") CmsHelpExample example); int updateByPrimaryKeySelective(CmsHelp record); int updateByPrimaryKeyWithBLOBs(CmsHelp record); int updateByPrimaryKey(CmsHelp record); }