| | |
| | | package com.moral.monitor.service;
|
| | |
|
| | | import com.moral.monitor.entity.MonitorPoint;
|
| | | import com.moral.monitor.entity.QueryHelper;
|
| | | import org.springframework.stereotype.Service;
|
| | | import java.util.List;
|
| | |
|
| | | import com.moral.monitor.entity.MonitorPoint;
|
| | | import com.moral.monitor.entity.MonitorPointExample;
|
| | | import com.moral.monitor.entity.QueryHelper;
|
| | |
|
| | | /**
|
| | | * Created by a on 2017/7/18.
|
| | | */
|
| | | @Service
|
| | | public interface MonitorpointService {
|
| | | public List<MonitorPoint> allMonitorpoint(QueryHelper queryHelper);
|
| | | //根据example条件来获取监控点
|
| | | List<MonitorPoint> queryListByExample(MonitorPointExample example);
|
| | |
|
| | | 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);
|
| | |
|
| | |
|
| | | }
|
| | |
|
| | |
|