123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 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<BusinessNoticeReceive> 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<Map<String, String>> getUserRole(Integer userId);
-
- /**
- * 查询一条第三方接口配置数据
- * @param param
- * @return
- */
- Map<String, Object> getSysCodeUrl(Map<String, Object> param);
- }
|