Redeem il y a 10 mois
Parent
commit
d3b62db90a

+ 6 - 0
src/main/java/com/steerinfo/dil/controller/ReportController.java

@@ -173,4 +173,10 @@ public class ReportController {
                                         Integer pageSize) {
         return reportFeign.getOperateDaily(mapValue, apiId, pageNum, pageSize);
     }
+
+    @ApiOperation("匹配导入数据")
+    @PostMapping("matchImport")
+    Map<String, Object> matchImport(@RequestBody Map<String,Object> map) {
+        return reportFeign.matchImport(map);
+    }
 }

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

@@ -95,4 +95,7 @@ public interface ReportFeign {
                                         @RequestParam Integer apiId,
                                         @RequestParam Integer pageNum,
                                         @RequestParam Integer pageSize);
+
+    @PostMapping(value = "api/v1/report/reportDaily/matchImport")
+    Map<String, Object> matchImport(Map<String, Object> map);
 }

+ 4 - 4
src/main/resources/application-prod.yml

@@ -34,8 +34,8 @@ openfeign:
     url: ${AMSFEIGN_URL:172.16.90.202:8079}
 #      url: ${AMSFEIGN_URL:localhost:8079}
   TmsFeign:
-    url: ${TMSFEIGN_URL:172.16.90.202:8086}
-#    url: ${TMSFEIGN_URL:localhost:8086}
+#    url: ${TMSFEIGN_URL:172.16.90.202:8086}
+    url: ${TMSFEIGN_URL:localhost:8086}
   WMSFeign:
     url: ${WMSFEIGN_URL:172.16.90.202:8093}
   RmsFeign:
@@ -48,8 +48,8 @@ openfeign:
   WebSocketFeign:
     url: ${WEBSOCKETFEIGN_URL:172.16.90.214:80}
   REPORTFeign:
-    url: ${REPORTFEIGN_URL:172.16.90.202:8055}
-#      url: ${REPORTFEIGN_URL:localhost:8055}
+#    url: ${REPORTFEIGN_URL:172.16.90.202:8055}
+      url: ${REPORTFEIGN_URL:localhost:8055}
   TmiFeigh:
     url: ${TMI_URL:172.16.90.202:8018}
 #    url: ${TMI_URL:localhost:8018}