package com.moral.monitor.dao;
|
|
import com.moral.monitor.entity.*;
|
import org.apache.ibatis.annotations.Param;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
|
/**
|
* Created by a on 2017/7/19.
|
*/
|
@Repository
|
public interface MgrDao {
|
|
public List<MonitorPoint> randpoint();
|
public List<Equipment> pointequ(String monitorpoint);
|
|
public List<State> equsensorstate(@Param("mac") String mac);
|
|
public List<MonitorPoint> allpoint();
|
|
public List<PointAvg> allPointsData(QueryHelper queryHelper);
|
public int pointcount(QueryHelper queryHelper);
|
|
|
|
}
|