类 Y9PreFormItemBindRestController
- java.lang.Object
-
- net.risesoft.controller.config.Y9PreFormItemBindRestController
-
@RestController @RequestMapping(value="/vue/preFormBind", produces="application/json") public class Y9PreFormItemBindRestController extends Object- 作者:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
构造器概要
构造器 构造器 说明 Y9PreFormItemBindRestController()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 net.risesoft.pojo.Y9Result<String>deleteBind(String id)删除绑定表单net.risesoft.pojo.Y9Result<Y9PreFormItemBind>getBindList(String itemId)获取绑定的表单net.risesoft.pojo.Y9Result<List<Y9FormVO>>getFormList(String itemId, String systemName, String formName)获取表单列表net.risesoft.pojo.Y9Result<String>saveBindForm(String itemId, String formId, String formName)保存绑定表单
-
-
-
方法详细资料
-
deleteBind
@PostMapping("/deleteBind") public net.risesoft.pojo.Y9Result<String> deleteBind(@RequestParam String id)删除绑定表单- 参数:
id- 绑定id- 返回:
-
getBindList
@GetMapping("/getBindList") public net.risesoft.pojo.Y9Result<Y9PreFormItemBind> getBindList(@RequestParam String itemId)获取绑定的表单- 参数:
itemId- 事项id- 返回:
-
getFormList
@GetMapping("/getFormList") public net.risesoft.pojo.Y9Result<List<Y9FormVO>> getFormList(@RequestParam String itemId, @RequestParam String systemName, @RequestParam(required=false) String formName)获取表单列表- 参数:
itemId- 事项idformName- 表单名称systemName- 系统名称- 返回:
-
-