| | |
| | | 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.QueryHelper;
|
| | |
|
| | | public interface MonitorpointDao {
|
| | | long countByExample(MonitorPointExample example);
|
| | |
| | | int updateByPrimaryKeySelective(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);
|
| | | } |