| | |
| | | package com.vincent.rsf.openApi.service; |
| | | |
| | | import com.vincent.rsf.openApi.entity.dto.CommonResponse; |
| | | import com.vincent.rsf.openApi.entity.params.ErpMatnrParms; |
| | | import com.vincent.rsf.openApi.entity.params.ErpOpParams; |
| | | import com.vincent.rsf.openApi.entity.params.ReportParams; |
| | | |
| | | import java.util.Map; |
| | | |
| | | public interface WmsErpService { |
| | | |
| | |
| | | CommonResponse updateOrderDetl(ErpOpParams params); |
| | | |
| | | CommonResponse orderDel(ErpOpParams params); |
| | | |
| | | CommonResponse syncMatnrs(ErpMatnrParms parms); |
| | | |
| | | CommonResponse reportOrders(ReportParams params); |
| | | |
| | | CommonResponse reportCheck(Map<String, Object> params); |
| | | } |