@@ -2040,4 +2040,11 @@ public class AMScontroller{
return amsFeign.batchUpdateInwardConsignee(mapList);
}
+ @ApiOperation(value = "查询通知信息", notes = "根据传过来的orgcode查询")
+ @PostMapping("/getNotice")
+ public RESTfulResult getNotice(@RequestBody(required = false) Map<String, Object> mapValue){
+
+ return amsFeign.getNotice(mapValue);
+ }
@@ -1766,4 +1766,9 @@ public interface AmsFeign {
@PostMapping(value = "/api/v1/ams/amssaleordermaterials/batchUpdateInwardConsignee")
Map<String, Object> batchUpdateInwardConsignee(@RequestBody List<Map<String, Object>> mapList);
+ @PostMapping(value = "/api/v1/ams/dilnotices/getNotice")
+ RESTfulResult getNotice(@RequestBody(required = false) Map<String, Object> mapValue);