@@ -2033,4 +2033,12 @@ public class AMScontroller{
String totheStation){
return amsFeign.getKucunList(map==null?new HashMap<>():map,startTime,endTime,remark,transferIndep,consigneeName,totheStation);
}
+
+ @ApiOperation(value = "查询通知信息", notes = "根据传过来的orgcode查询")
+ @PostMapping("/getNotice")
+ public RESTfulResult getNotice(@RequestBody(required = false) Map<String, Object> mapValue){
+ return amsFeign.getNotice(mapValue);
+ }
@@ -1763,4 +1763,7 @@ public interface AmsFeign {
@RequestParam String consigneeName,
@RequestParam String totheStation);
+ @PostMapping(value = "/api/v1/ams/dilnotices/getNotice")
+ RESTfulResult getNotice(@RequestBody(required = false) Map<String, Object> mapValue);