package com.objecteye.mapper; import com.objecteye.entity.SyDeploy; import com.objecteye.entity.SyDeployExample; import org.apache.ibatis.annotations.Param; import java.util.List; public interface SyDeployMapper { int countByExample(SyDeployExample example); int deleteByExample(SyDeployExample example); int deleteByPrimaryKey(Integer id); int insert(SyDeploy record); int insertSelective(SyDeploy record); List selectByExample(SyDeployExample example); SyDeploy selectByPrimaryKey(Integer id); int updateByExampleSelective(@Param("record") SyDeploy record, @Param("example") SyDeployExample example); int updateByExample(@Param("record") SyDeploy record, @Param("example") SyDeployExample example); int updateByPrimaryKeySelective(SyDeploy record); int updateByPrimaryKey(SyDeploy record); }