package mapper; import com.moral.monitor.entity.Monitorpoint; import com.moral.monitor.entity.MonitorpointExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface MonitorpointDao { long countByExample(MonitorpointExample example); int deleteByExample(MonitorpointExample example); int deleteByPrimaryKey(String id); int insert(Monitorpoint record); int insertSelective(Monitorpoint record); List selectByExample(MonitorpointExample example); Monitorpoint selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") Monitorpoint record, @Param("example") MonitorpointExample example); int updateByExample(@Param("record") Monitorpoint record, @Param("example") MonitorpointExample example); int updateByPrimaryKeySelective(Monitorpoint record); int updateByPrimaryKey(Monitorpoint record); }