jinpengyong
2020-08-20 22eb0d07b7230bfdb9542a3d6d24d5163b14c5ac
src/main/java/com/moral/service/MonitorPointService.java
@@ -4,8 +4,11 @@
import java.util.List;
import java.util.Map;
import com.alibaba.fastjson.JSONObject;
import com.moral.common.bean.PageBean;
import com.moral.entity.Device;
import com.moral.entity.MonitorPoint;
import org.apache.xmlbeans.impl.jam.mutable.MPackage;
public interface MonitorPointService {
@@ -41,4 +44,16 @@
   void isCompensateCalculation(Map<String, Object> parameters);
   
   Map<String, Object> selectAllById(String id);
    //通过monitorPointId获取该公司区域的所有设备
    List<Device> getDeviceList(int id);
    //获取公司信息,通过id
    JSONObject getMonitorPointById(int id, String Time, int i, String sensor);
    JSONObject getMacList(int id);
    List<MonitorPoint> getMonitorPointListByAccountId(int id);
    MonitorPoint byIdGetMonitorPoint(int id);
}