dengpan 1 jaar geleden
bovenliggende
commit
175aea6d97

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

@@ -1063,4 +1063,10 @@ public class AMScontroller  extends BaseRESTfulController {
     public Map<String, Object> updateBindRequirement(@RequestBody Map<String, Object> params) throws Exception {
         return amsFeign.updateBindRequirement(params);
     }
+
+    @ApiOperation("汽运传火运清洁能源")
+    @PostMapping("/qjnyChange")
+    public Map<String, Object> qjnyChange(@RequestBody Map<String, Object> params) throws Exception {
+        return amsFeign.qjnyChange(params);
+    }
 }

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

@@ -390,4 +390,7 @@ public interface AmsFeign {
 
     @PostMapping(value = "api/v1/ams/amstransrequirements/updateBindRequirement")
     Map<String, Object> updateBindRequirement(@RequestBody Map<String, Object> map);
+
+    @PostMapping(value = "api/v1/ams/amstransrequirements/qjnyChange")
+    Map<String, Object> qjnyChange(@RequestBody Map<String, Object> map);
 }