| 1234567891011121314151617181920 |
- package com.uas.eis.service;
- import com.uas.eis.entity.vwms.entity.ProdInout;
- import java.util.Map;
- /**
- * @author wuyx
- * @email wuyx@usoftchina.com
- * @date 2025-03-04
- */
- public interface DocCommonService {
- String getMasterEv(String master);
- ProdInout getIO(String master,String id,String pdIds);
- String sendOutToWms(ProdInout prodInOut, String masterName);
- String sendInToWms(ProdInout prodInOut, String masterName);
- String doPostToWms(String xml,String method);
- }
|