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();
|
}
|