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 */ MapgetRollPackWorkOrder(int type) throws Exception; /** * 统计当年每月的产量 * @return * @throws Exception */ Map getYearMonthQty() throws Exception; /** * 近七天各类型设备 每天产量和 * @return * @throws Exception */ Map getSevenDayQty() throws Exception; /** * 设备一周有效作业率 * @return * @throws Exception */ Map getEquEffe() throws Exception; /** * * 获取设备最高运行效率 * */ Map getEquMax() throws Exception; /** * 查询前30天外观缺陷数据 * zgf * @return */ List queryLastMonthWgqx(); /** * 查询前30天剔除数据 * zgf * @return */ List> queryLastMonthTc(); }