|
@@ -1042,4 +1042,10 @@ public class AMScontroller extends BaseRESTfulController {
|
|
|
public Map<String, Object> addAmsFixedBindRequirement(@RequestBody Map<String, Object> params) throws Exception {
|
|
public Map<String, Object> addAmsFixedBindRequirement(@RequestBody Map<String, Object> params) throws Exception {
|
|
|
return amsFeign.addAmsFixedBindRequirement(params);
|
|
return amsFeign.addAmsFixedBindRequirement(params);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ @ApiOperation("请求撤回需求")
|
|
|
|
|
+ @PostMapping("/withdrawRequirement")
|
|
|
|
|
+ public Map<String, Object> withdrawRequirement(@RequestBody Map<String, Object> params) throws Exception {
|
|
|
|
|
+ return amsFeign.withdrawRequirement(params);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|