package io.dataease.base.mapper; import io.dataease.base.domain.ServiceIntegration; import io.dataease.base.domain.ServiceIntegrationExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface ServiceIntegrationMapper { long countByExample(ServiceIntegrationExample example); int deleteByExample(ServiceIntegrationExample example); int deleteByPrimaryKey(String id); int insert(ServiceIntegration record); int insertSelective(ServiceIntegration record); List selectByExampleWithBLOBs(ServiceIntegrationExample example); List selectByExample(ServiceIntegrationExample example); ServiceIntegration selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") ServiceIntegration record, @Param("example") ServiceIntegrationExample example); int updateByExampleWithBLOBs(@Param("record") ServiceIntegration record, @Param("example") ServiceIntegrationExample example); int updateByExample(@Param("record") ServiceIntegration record, @Param("example") ServiceIntegrationExample example); int updateByPrimaryKeySelective(ServiceIntegration record); int updateByPrimaryKeyWithBLOBs(ServiceIntegration record); int updateByPrimaryKey(ServiceIntegration record); }