package com.moral.monitor.dao; import java.util.List; import org.apache.ibatis.annotations.Param; import com.moral.monitor.entity.MonitorPoint; import com.moral.monitor.entity.MonitorPointExample; 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); }