BusinessNoticeReceiveMapper.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package com.chinaitop.depot.business.mapper;
  2. import com.chinaitop.depot.business.model.BusinessNoticeReceive;
  3. import com.chinaitop.depot.business.model.BusinessNoticeReceiveExample;
  4. import java.util.List;
  5. import java.util.Map;
  6. import org.apache.ibatis.annotations.Param;
  7. public interface BusinessNoticeReceiveMapper {
  8. int countByExample(BusinessNoticeReceiveExample example);
  9. int deleteByExample(BusinessNoticeReceiveExample example);
  10. int deleteByPrimaryKey(Integer id);
  11. int insert(BusinessNoticeReceive record);
  12. int insertSelective(BusinessNoticeReceive record);
  13. List<BusinessNoticeReceive> selectByExample(BusinessNoticeReceiveExample example);
  14. BusinessNoticeReceive selectByPrimaryKey(Integer id);
  15. int updateByExampleSelective(@Param("record") BusinessNoticeReceive record, @Param("example") BusinessNoticeReceiveExample example);
  16. int updateByExample(@Param("record") BusinessNoticeReceive record, @Param("example") BusinessNoticeReceiveExample example);
  17. int updateByPrimaryKeySelective(BusinessNoticeReceive record);
  18. int updateByPrimaryKey(BusinessNoticeReceive record);
  19. List<Map<String, String>> getUserRole(Integer userId);
  20. /**
  21. * 查询一条第三方接口配置数据
  22. * @param param
  23. * @return
  24. */
  25. Map<String, Object> getSysCodeUrl(Map<String, Object> param);
  26. }