工业级运维app手机api
fengxiang
2017-11-27 f07e90248c565330e5219d3aed095f55e10904db
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
 
 
 
}