21 lines
463 B
Java
21 lines
463 B
Java
package com.cim.idm.service;
|
|
|
|
|
|
import com.cim.idm.wmsextend.generic.errorHandler.CustomException;
|
|
|
|
/**
|
|
* MES接口类
|
|
* @author zd
|
|
*
|
|
*/
|
|
public interface MESService {
|
|
|
|
/**
|
|
* 领料单领料数据发送MES
|
|
* @param receiveActNo receiveActNo每批的出货号
|
|
* @return
|
|
*/
|
|
String OutMaterialInfoSend (String shipRequestName, String siteName,String receiveActNo ,String wo,String erpReceiveLocation,String erpReceiveFactory) throws CustomException;
|
|
|
|
}
|