zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
28
29
30
31
32
33
34
35
package com.shlanbao.tzsc.pms.equ.runtime.service;
 
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.base.model.PageParams;
import com.shlanbao.tzsc.pms.equ.effective.beans.EffectiveGraphBean;
import com.shlanbao.tzsc.pms.equ.runtime.beans.EqpRunTimeBean;
 
/**
 * 
 * @ClassName: EqpRunTimeServiceI 
 * @Description: 设备运行统计 
 * @author luo
 * @date 2015年3月5日 下午3:10:15 
 *
 */
public interface EqpRunTimeServiceI {
    /**
    * @Title: queryEqpRunTimeByBean 
    * @Description: 设备运行统计查询
    * @param bean
    * @param pageParams
    * @return
     */
    public DataGrid queryEqpRunTimeByBean(EqpRunTimeBean bean, PageParams pageParams);
    
    /**
    * @Title: queryEqpRunTimeChart 
    * @Description: 设备运行统计查询chart
    * @param bean
    * @param pageParams
    * @return
     */
    public EffectiveGraphBean queryEqpRunTimeChart(EqpRunTimeBean bean, PageParams pageParams);
    
}