zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
36
package com.shlanbao.tzsc.pms.sch.workorder.service;
 
import java.util.List;
 
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.base.model.PageParams;
import com.shlanbao.tzsc.pms.sch.workorder.beans.FaultWkBean;
 
/**
 * 
* @ClassName: FaultWkServiceI 
* @Description: 设备运行故障信息 
* @author luo 
* @date 2015年10月10日 上午10:05:39 
*
 */
public interface FaultWkServiceI {
    /**
    * @Title: queryFaultWkGrid 
    * @Description: PMS 机台故障查询
    * @param bean 查询条件
    * @param pageParams 翻页条件
    * @return DataGrid    返回类型 
    * @throws
     */
    public DataGrid queryFaultWkGrid(FaultWkBean bean,PageParams pageParams);
    
    /**
    * @Title: exportFaultWkList 
    * @Description: 根据条件查询所有故障列表
    * @param 查询条件
    * @return List<FaultWkBean>    返回类型 
    * @throws
     */
    public List<FaultWkBean> exportFaultWkList(FaultWkBean bean,String param);
}