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
package com.shlanbao.tzsc.pms.board.board.service;
 
import com.shlanbao.tzsc.pms.qm.self.beans.QmOutWandBean;
 
import java.util.List;
import java.util.Map;
 
public interface BoardServiceI {
    /**
     * 卷接机、包装机当天工单
     * @param type 1-卷接机 2-包装机
     * @return
     * @throws Exception
     */
    Map<String,Object>getRollPackWorkOrder(int type) throws Exception;
 
 
    /**
     * 统计当年每月的产量
     * @return
     * @throws Exception
     */
    Map<String,Object> getYearMonthQty() throws  Exception;
 
 
    /**
     * 近七天各类型设备 每天产量和
     * @return
     * @throws Exception
     */
    Map<String,Object> getSevenDayQty() throws Exception;
 
 
 
    /**
     * 设备一周有效作业率
     * @return
     * @throws Exception
     */
    Map<String,Object> getEquEffe() throws Exception;
 
 
   /**
   *
   * 获取设备最高运行效率
   * */
    Map<String,Object> getEquMax() throws Exception;
 
 
    /**
     * 查询前30天外观缺陷数据
     * zgf
     * @return
     */
    List<QmOutWandBean> queryLastMonthWgqx();
    /**
     * 查询前30天剔除数据
     * zgf
     * @return
     */
    List<Map<String, Object>> queryLastMonthTc();
}