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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package com.shlanbao.tzsc.pms.qm.self.service;
 
import java.util.List;
 
import javax.servlet.http.HttpServletRequest;
 
import com.shlanbao.tzsc.base.mapping.QmOutward;
import com.shlanbao.tzsc.base.model.DataGrid;
import com.shlanbao.tzsc.base.model.PageParams;
import com.shlanbao.tzsc.base.model.SessionInfo;
import com.shlanbao.tzsc.pms.qm.self.beans.QmAppearanceDataBean;
import com.shlanbao.tzsc.pms.qm.self.beans.QmOutWandBean;
/**
 * 外观质量检验记录接口
 * @author luther.zhang
 * @create 2015-01-05
 */
public interface QmOutWandService {
    /**
     * 查询外观检测记录
     */
    DataGrid queryList(QmOutWandBean bean,PageParams pageParams) throws Exception;
    /**
     *查询外观检测记录详细
     * @param id
     * @return
     */
    List<QmOutWandBean> queryDel(String id);
    
    /**
     * 反馈物理外观检测数据
     * @param id
     */
    void sendMsg(String id,String param);
    
    /**
     *根据eqp查询工单
     * @param id
     * @return
     */
    List<QmOutWandBean> queryOrderNumber(String id,SessionInfo sessionInfo,HttpServletRequest request);
    
    /**
     *根据缺陷大类查询缺陷小类
     * 
     * 
     */
    DataGrid queryOutWandDes(QmOutWandBean bean,HttpServletRequest request,PageParams pageParams);
    
    /**
     *保存外观质量缺陷
     * 
     * 
     */
    void saveOutWandDes(QmAppearanceDataBean bean, HttpServletRequest request);
    /**
     * 外观缺陷
     *   反馈班长
     * */
    void updateQmOutWardByIds(String ids,String sts);
    /**
     * 更改检测时间
     *   rengj
     *   
     * */
    String updateCheckTimes(String stim,String ids);
 
    /**
     * @author: sunzhen
     * @date: 2019-09-03 14:22
     * @param: id
     * @param: param
     * @param: request
     * @return: java.lang.String
     * @throws:
     * @description: 批量删除外观自检记录
    */
    String beatchDeleteOutWand(String id,HttpServletRequest request);
 
    /**
     * @author: sunzhen
     * @date: 2019-09-03 14:22
     * @param: id
     * @param: param
     * @param: request
     * @return: java.lang.String
     * @throws:
     * @description: 删除外观自检记录
     */
    String deleteOutWand(String id, HttpServletRequest request);
 
    /**
     * 编辑
     * @param qmOutWandBean
     * @return
     */
    String edit(QmOutWandBean qmOutWandBean);
 
    /**
     * 根据id查询
     * @return
     */
    QmOutWandBean queryById(String id);
}