|
|
@@ -582,4 +582,13 @@ public class AMScontroller {
|
|
|
public Map<String, Object> productionRequirementChanges(@PathVariable String id,@RequestBody(required = false) Map<String, Object> map) {
|
|
|
return amsFeign.productionRequirementChanges(id,map);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "查询派单时需要的发运单信息", notes = "查询派单时需要的发运单信息")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "planChildId", value = "json格式具体参数", required = true, dataType = "Integer")
|
|
|
+ })
|
|
|
+ @PostMapping(value = "/selectPlanChildById/{planChildId}")
|
|
|
+ public RESTfulResult selectPlanChildById(@PathVariable("planChildId") String planChildId) {
|
|
|
+ return amsFeign.selectPlanChildById(planChildId);
|
|
|
+ }
|
|
|
}
|