Package net.risesoft.controller.config
Class ItemInterfaceParamsBindController
- java.lang.Object
-
- net.risesoft.controller.config.ItemInterfaceParamsBindController
-
@RestController @RequestMapping(value="/vue/interfaceParamsBind", produces="application/json") public class ItemInterfaceParamsBindController extends Object- Author:
- zhangchongjie
- Date:
- 2024/05/24
-
-
Constructor Summary
Constructors Constructor Description ItemInterfaceParamsBindController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<Map<String,Object>>getBindInfo(String id, String itemId)获取绑定信息net.risesoft.pojo.Y9Result<List<ItemInterfaceParamsBind>>getBindList(String itemId, String interfaceId, String type)获取绑定列表net.risesoft.pojo.Y9Result<String>removeBind(String id)移除绑定net.risesoft.pojo.Y9Result<String>saveBind(ItemInterfaceParamsBind info)保存绑定
-
-
-
Method Detail
-
getBindInfo
@GetMapping("/getBindInfo") public net.risesoft.pojo.Y9Result<Map<String,Object>> getBindInfo(@RequestParam(required=false) String id, @RequestParam String itemId)获取绑定信息- Parameters:
id- 绑定iditemId- 事项id- Returns:
-
getBindList
@GetMapping("/getBindList") public net.risesoft.pojo.Y9Result<List<ItemInterfaceParamsBind>> getBindList(@RequestParam String itemId, @RequestParam String interfaceId, @RequestParam String type)获取绑定列表- Parameters:
itemId- 事项idinterfaceId- 接口idtype- 参数类型- Returns:
-
removeBind
@PostMapping("/removeBind") public net.risesoft.pojo.Y9Result<String> removeBind(@RequestParam String id)移除绑定- Parameters:
id- 绑定id- Returns:
-
saveBind
@PostMapping("/saveBind") public net.risesoft.pojo.Y9Result<String> saveBind(ItemInterfaceParamsBind info)保存绑定- Parameters:
info- 绑定信息- Returns:
-
-