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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.shlanbao.tzsc.pms.equ.trouble.service;
 
import java.util.List;
 
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.base.model.PageParams;
import com.shlanbao.tzsc.pms.equ.trouble.beans.EqmTroubleBean;
import com.shlanbao.tzsc.pms.equ.trouble.beans.EqmTroubleInfoBean;
import com.shlanbao.tzsc.pms.equ.trouble.beans.TroubleBean;
 
public interface TroubleServiceI {
    /**
     * 设备故障统计查询
     * @param troubleBean
     * @param pageParams
     * @throws Exception
     */
    public DataGrid queryTrouble(TroubleBean troubleBean,PageParams pageParams) throws Exception;
    
    
    /**
     * @param eqmtroubleBean
     * @param pageParams
     * @return 
     * @throws Exception
     */
    public DataGrid queryTrouble(EqmTroubleBean eqmtroubleBean,PageParams pageParams) throws Exception;
    /**
     * 张璐
     * 设备信息表查询--测试用
     * @return
     */
    public List<EqmTroubleInfoBean> queryTroubleInfo(EqmTroubleInfoBean troubleBean);
    
    /**张璐2015-10-30
     * 用于添加新的故障信息
     * @param des--故障描述
     * @param fiveCode--本级代码
     * @param pid--父节点
     */
    public void addNewTrouble(String des,String fiveCode,String pid,String id);
    
    /**
     * 删除新添加的故障
     * 张璐
     */
    public void deleteNewTrouble(String id);
 
    /** 设备维修故障记录-反馈MES*/ 
    public void dasSendTrouble(String ids);
    
    
}