package com.chinaitop.depot.business.mapper; import com.chinaitop.depot.business.model.BusinessNoticeReceive; import com.chinaitop.depot.business.model.BusinessNoticeReceiveExample; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Param; public interface BusinessNoticeReceiveMapper { int countByExample(BusinessNoticeReceiveExample example); int deleteByExample(BusinessNoticeReceiveExample example); int deleteByPrimaryKey(Integer id); int insert(BusinessNoticeReceive record); int insertSelective(BusinessNoticeReceive record); List selectByExample(BusinessNoticeReceiveExample example); BusinessNoticeReceive selectByPrimaryKey(Integer id); int updateByExampleSelective(@Param("record") BusinessNoticeReceive record, @Param("example") BusinessNoticeReceiveExample example); int updateByExample(@Param("record") BusinessNoticeReceive record, @Param("example") BusinessNoticeReceiveExample example); int updateByPrimaryKeySelective(BusinessNoticeReceive record); int updateByPrimaryKey(BusinessNoticeReceive record); List> getUserRole(Integer userId); /** * 查询一条第三方接口配置数据 * @param param * @return */ Map getSysCodeUrl(Map param); }