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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package com.shlanbao.tzsc.pms.sys.repairResquest.service;
 
import java.util.List;
 
import org.springframework.web.multipart.MultipartFile;
 
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.base.model.PageParams;
import com.shlanbao.tzsc.pms.sys.repairResquest.beans.RepairResquestBean;
 
public interface RepairResquestServiceI {
    
    /**
     * 添加维修工
     * @author 景孟博
     * @param repairResquestuserBean
     * @throws Exception
     */
    public void addFixUser(RepairResquestBean repairResquestuserBean,MultipartFile file)throws Exception;
    
    
    /**
     * 查询维修工信息
     * @author 景孟博
     * @param repairResquestuserBean
     * @param pageParams
     * @return
     * @throws Exception
     */
    public DataGrid queryFixUser(RepairResquestBean repairResquestuserBean,PageParams pageParams)throws Exception;
    
    
    /**
     * 更新维修工信息
     * @author 景孟博
     * @param bean
     * @throws Exception
     */
    public void updateFixUser(RepairResquestBean bean,MultipartFile file)throws Exception;
    
    
    /**
     * 通过id查询维修工信息
     * @author 景孟博
     * @param id
     * @param updateUsrId
     * @param updateUserName
     * @return
     * @throws Exception
     */
    public RepairResquestBean getFixUserById(String id, String updateUsrId, String updateUserName)throws Exception;
    
    
    /**
     * 删除维修工信息
     * @author 景孟博
     * @param id
     * @throws Exception
     */
    public void deleteFixUser(String id)throws Exception;
    
    
    /**
     * 批量删除维修工信息
     * @author 景孟博
     * @param ids
     * @throws Exception
     */
    public void batchDelete(String ids)throws Exception;
    /**
     * 查询wct维修呼叫处于等待状态的请求信息,用于推送消息
     * shisihai
     */
 
    public List<RepairResquestBean> queryAskInfo();
    
    
 
}