|
@@ -2316,6 +2316,12 @@ public class AMScontroller{
|
|
|
return amsFeign.insertOyeWarehouse(mapValue);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value="新增欧冶具体库房信息")
|
|
|
+ @PostMapping("/insertOyeWarehouseSide")
|
|
|
+ public Map<String,Object> insertOyeWarehouseSide(@RequestBody Map<String,Object> mapValue) {
|
|
|
+ return amsFeign.insertOyeWarehouseSide(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
@ApiOperation(value = "查询欧冶库房信息")
|
|
|
@PostMapping("/getOyeWarehouse")
|
|
@@ -2329,6 +2335,18 @@ public class AMScontroller{
|
|
|
return amsFeign.getOyeWarehouse(mapValue,pageNum,pageSize,apiId);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "查询欧冶库房信息")
|
|
|
+ @PostMapping("/getOyeWarehouseSide")
|
|
|
+ public Map<String,Object> getOyeWarehouseSide(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ Integer apiId){
|
|
|
+ if(mapValue==null){
|
|
|
+ mapValue=new HashMap<>();
|
|
|
+ }
|
|
|
+ return amsFeign.getOyeWarehouseSide(mapValue,pageNum,pageSize,apiId);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "查询转运计划信息")
|
|
|
@PostMapping("/getTransPlan")
|
|
|
public Map<String,Object> getTransPlan(@RequestBody(required = false) Map<String, Object> mapValue,
|