|
@@ -1,6 +1,7 @@
|
|
|
package com.steerinfo.dil.controller;
|
|
|
|
|
|
import com.steerinfo.dil.feign.AmsFeign;
|
|
|
+import com.steerinfo.framework.controller.RESTfulResult;
|
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
|
import io.swagger.annotations.ApiImplicitParams;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
@@ -956,4 +957,19 @@ public class AMScontroller{
|
|
|
public Map<String, Object> getLockDispatchSaleOrderList(Integer carrierId) {
|
|
|
return amsFeign.getLockDispatchSaleOrderList(carrierId);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "查询所有的钢材物资")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "pageNum", value = "查询页数", required = false, dataType = "Integer"),
|
|
|
+ @ApiImplicitParam(name = "pageSize", value = "每页记录数", required = false, dataType = "Integer"),
|
|
|
+ @ApiImplicitParam(name = "apiId", value = "232", required = false, dataType = "BigDecimal")
|
|
|
+ })
|
|
|
+ @PostMapping("/getAllSteelMaterialMes")
|
|
|
+ public Map<String, Object> getAllSteelMaterialMes(@RequestBody(required = false) Map<String,Object> mapValue,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ Integer apiId,
|
|
|
+ String con) {
|
|
|
+ return amsFeign.getAllSteelMaterialMes(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId, con);
|
|
|
+ }
|
|
|
}
|