|
@@ -2,6 +2,7 @@ package com.steerinfo.dil.feign;
|
|
|
|
|
|
|
|
|
import com.steerinfo.framework.controller.RESTfulResult;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
@@ -16,6 +17,9 @@ public interface OmsFeign {
|
|
|
@PostMapping("api/v1/oms/utilscontroller/closeSteelOrderType4")
|
|
|
int closeSteelOrderType4(@RequestParam BigDecimal orderId);
|
|
|
|
|
|
+ @PostMapping("api/v1/oms/omstruckorderseparates/closeInwardOrder")
|
|
|
+ RESTfulResult closeInwardOrder(Integer orderId, Integer sqe, String resultNetWeight);
|
|
|
+
|
|
|
@PostMapping("api/v1/oms/omstrainorders/generateOmstrain")
|
|
|
int generateOmstrain(@RequestBody(required = false) Map<String,Object> map);
|
|
|
}
|