|
|
@@ -1546,4 +1546,36 @@ public class RMScontroller extends BaseRESTfulController {
|
|
|
public Map<String, Object> updateInnerCode(@RequestBody Map<String, Object> mapValue) {
|
|
|
return rmsFeign.updateInnerCode(mapValue);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "获取业务类型与控制关系列表")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
|
|
|
+ @ApiImplicitParam(name = "apiId()", value = "动态表头", required = false, dataType = "Integer"),
|
|
|
+ @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
|
|
|
+ @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
|
|
|
+ @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
|
|
|
+ })
|
|
|
+ @PostMapping("/getBusinessTypeControlList")
|
|
|
+ public Map<String, Object> getBusinessTypeControlList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize
|
|
|
+ ) {
|
|
|
+ return rmsFeign.getBusinessTypeControlList(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/addBusinessTypeControl")
|
|
|
+ public Map<String, Object> addBusinessTypeControl(@RequestBody Map<String, Object> mapValue) {
|
|
|
+ return rmsFeign.addBusinessTypeControl(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/updateBusinessTypeControl")
|
|
|
+ public Map<String, Object> updateBusinessTypeControl(@RequestBody Map<String, Object> mapValue) {
|
|
|
+ return rmsFeign.updateBusinessTypeControl(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/deleteBusinessTypeControl")
|
|
|
+ public Map<String, Object> deleteBusinessTypeControl(@RequestBody Map<String, Object> mapValue) {
|
|
|
+ return rmsFeign.deleteBusinessTypeControl(mapValue);
|
|
|
+ }
|
|
|
}
|