package com.shlanbao.tzsc.pms.isp.service; import java.util.List; import java.util.Map; import javax.servlet.http.HttpServletRequest; import com.shlanbao.tzsc.pms.isp.beans.BoxerGroup; import com.shlanbao.tzsc.pms.isp.beans.FilterGroup; import com.shlanbao.tzsc.pms.isp.beans.RollerPackerGroup; import com.shlanbao.tzsc.pms.isp.beans.ShooterGroup; import com.shlanbao.tzsc.pms.isp.beans.WorkorderInfoBean; import com.shlanbao.tzsc.pms.sch.workorder.beans.WorkOrderBean; public interface PmsIspServiceI { /** * 获得所有卷包机组数据 * * @return * @author Leejean * @create 2015年1月16日上午9:07:02 */ List getAllRollerPackerDatas(); /** * 获得所有成型机数据 * * @return * @author Leejean * @create 2015年1月27日上午8:57:51 */ List getAllFilterDatas(); /** * 加载卷包机组工单信息(机组中的卷烟机,包装机工单的产量,牌号必定一致) * * @return * @author Leejean * @create 2015年1月16日上午11:17:45 */ List initRollerPackerGroupWorkOrderInfo(Long type); /** * 初始化卷包机组 * * @param request 请求 * @return 卷包机组信息集合 * @author Leejean * @create 2015年1月22日上午8:34:55 */ List initRollerPackerGroups(HttpServletRequest request); /** * 初始化封箱机组 * * @param request 请求 * @return 卷包机组信息集合 * @author Leejean * @create 2015年1月22日上午8:34:55 */ List initBoxerGroups(HttpServletRequest request); /** * 初始化发射机组 * * @param request 请求 * @return 卷包机组信息集合 * @author Leejean * @create 2015年1月22日上午8:34:55 */ List initShootererGroups(HttpServletRequest request); /** * 初始化成型机机组 * * @param request 请求 * @return 卷包机组信息集合 * @author Leejean * @create 2015年1月22日上午8:34:55 */ List initFilterGroups(HttpServletRequest request); /** * @param * @return * @author zgf * @desc 获取设备实时详细数据 */ Map getEquDetailRealData(Map map); /**条烟输送实时数据 * @return */ Map getFormatted(); }