工业级运维app手机api
fengxiang
2017-10-31 553cfb535064f484245c571f894d69e5e8cd3f04
src/main/java/com/moral/monitor/dao/MonitorpointDao.java
@@ -1,30 +1,42 @@
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;
import com.moral.monitor.entity.MonitorPoint;
import com.moral.monitor.entity.MonitorPointExample;
import com.moral.monitor.entity.QueryHelper;
public interface MonitorpointDao {
    long countByExample(MonitorpointExample example);
    long countByExample(MonitorPointExample example);
    int deleteByExample(MonitorpointExample example);
    int deleteByExample(MonitorPointExample example);
    int deleteByPrimaryKey(String id);
    int insert(Monitorpoint record);
    int insert(MonitorPoint record);
    int insertSelective(Monitorpoint record);
    int insertSelective(MonitorPoint record);
    List<Monitorpoint> selectByExample(MonitorpointExample example);
    List<MonitorPoint> selectByExample(MonitorPointExample example);
    Monitorpoint selectByPrimaryKey(String id);
    MonitorPoint selectByPrimaryKey(String id);
    int updateByExampleSelective(@Param("record") Monitorpoint record, @Param("example") MonitorpointExample example);
    int updateByExampleSelective(@Param("record") MonitorPoint record, @Param("example") MonitorPointExample example);
    int updateByExample(@Param("record") Monitorpoint record, @Param("example") MonitorpointExample example);
    int updateByExample(@Param("record") MonitorPoint record, @Param("example") MonitorPointExample example);
    int updateByPrimaryKeySelective(Monitorpoint record);
    int updateByPrimaryKeySelective(MonitorPoint record);
    int updateByPrimaryKey(Monitorpoint record);
    int updateByPrimaryKey(MonitorPoint record);
    public List<MonitorPoint> allMonitorPoint(QueryHelper queryHelper);
    public int monitorCount(QueryHelper queryHelper);
    public void deleteMonitor(String id);
    public void addMonitorpoint(MonitorPoint monitorPoint);
    public void updateMonitorpoint(MonitorPoint monitorPoint);
}