32 lines
744 B
Java
Raw Normal View History

2025-03-10 13:46:51 +08:00
package com.cim.idm.service;
import com.alibaba.fastjson.JSONArray;
import com.cim.idm.utils.AjaxResult;
public interface MESToWMSService {
/**
* 接收MES请求物料消耗请求
* @param in
* @return
*/
AjaxResult materialConsume_Request(JSONArray in) throws Exception;
/**
* 接收MES请求物料出库请求
* @param in
* @return
*/
AjaxResult materialOutByMES(JSONArray in) throws Exception;
/**
* 接收MES请求物料取消入库请求
* @param in
* @return
*/
AjaxResult cancelShipByMES(JSONArray in);
/**
* 接收MES请求物料入库请求
* @param in
* @return
*/
AjaxResult shipByMES(JSONArray in) throws Exception;
}