This commit is contained in:
linfso 2024-09-01 20:35:10 +08:00
parent ac3d2f8206
commit 88be5bf7ed
2 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ public class Oms2cWarehouseInController extends BaseController
*/
@Log(title = "导出进仓单文件", businessType = BusinessType.EXPORT)
@PostMapping("/exportWarehouseInTpl")
public void exportWarehouseInTpl(HttpServletResponse servletResponse, @RequestBody WaybillOrder waybillOrder) throws IOException {
public void exportWarehouseInTpl(HttpServletResponse servletResponse, WaybillOrder waybillOrder) throws IOException {
Response response = this.iRpcWarehouseInSvc.exportWarehouseInTpl(waybillOrder);
Response.Body body = response.body();

View File

@ -40,6 +40,6 @@ public interface IRpcWarehouseInSvc {
@PostMapping(value = "/apiweb/emisWarehouseIn/exportWarehouseInTpl")
public Response exportWarehouseInTpl(@RequestBody WaybillOrder waybillOrder);
public Response exportWarehouseInTpl(WaybillOrder waybillOrder);
}