소스 검색

提交通知代码

zyf 2 년 전
부모
커밋
6b84afc8d6
2개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      src/main/java/com/steerinfo/dil/controller/AMScontroller.java
  2. 3 0
      src/main/java/com/steerinfo/dil/feign/AmsFeign.java

+ 8 - 0
src/main/java/com/steerinfo/dil/controller/AMScontroller.java

@@ -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);
+    }
 }

+ 3 - 0
src/main/java/com/steerinfo/dil/feign/AmsFeign.java

@@ -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);
+
 }