类 ItemInterfaceParamsBindController
- java.lang.Object
-
- net.risesoft.controller.config.ItemInterfaceParamsBindController
-
@RestController @RequestMapping(value="/vue/interfaceParamsBind", produces="application/json") public class ItemInterfaceParamsBindController extends Object- 作者:
- zhangchongjie
- Date:
- 2024/05/24
-
-
构造器概要
构造器 构造器 说明 ItemInterfaceParamsBindController()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 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)保存绑定
-
-
-
方法详细资料
-
getBindInfo
@GetMapping("/getBindInfo") public net.risesoft.pojo.Y9Result<Map<String,Object>> getBindInfo(@RequestParam(required=false) String id, @RequestParam String itemId)获取绑定信息- 参数:
id- 绑定iditemId- 事项id- 返回:
-
getBindList
@GetMapping("/getBindList") public net.risesoft.pojo.Y9Result<List<ItemInterfaceParamsBind>> getBindList(@RequestParam String itemId, @RequestParam String interfaceId, @RequestParam String type)获取绑定列表- 参数:
itemId- 事项idinterfaceId- 接口idtype- 参数类型- 返回:
-
removeBind
@PostMapping("/removeBind") public net.risesoft.pojo.Y9Result<String> removeBind(@RequestParam String id)移除绑定- 参数:
id- 绑定id- 返回:
-
saveBind
@PostMapping("/saveBind") public net.risesoft.pojo.Y9Result<String> saveBind(ItemInterfaceParamsBind info)保存绑定- 参数:
info- 绑定信息- 返回:
-
-