| | |
| | | package com.moral.monitor.service;
|
| | |
|
| | | import com.moral.monitor.entity.Monitorpoint;
|
| | | import com.moral.monitor.entity.MonitorPoint;
|
| | | import com.moral.monitor.entity.QueryHelper;
|
| | | import org.springframework.stereotype.Service;
|
| | | import java.util.List;
|
| | |
| | | */
|
| | | @Service
|
| | | public interface MonitorpointService {
|
| | | public List<Monitorpoint> allMonitorpoint(QueryHelper queryHelper);
|
| | | public List<MonitorPoint> allMonitorpoint(QueryHelper queryHelper);
|
| | |
|
| | | public int monitorCount(QueryHelper queryHelper);
|
| | |
|
| | |
| | | public void deleteMonitor(String id);
|
| | |
|
| | |
|
| | | public void addMonitorpoint(Monitorpoint Monitorpoint);
|
| | | public void addMonitorpoint(MonitorPoint MonitorPoint);
|
| | |
|
| | | public void updateMonitorpoint(Monitorpoint Monitorpoint);
|
| | | public void updateMonitorpoint(MonitorPoint MonitorPoint);
|
| | |
|
| | |
|
| | | }
|