| | |
| | | * @return 表单的数据 |
| | | */ |
| | | @PostMapping("/dataFormQuery") |
| | | @VciUnCheckRight |
| | | @VciBusinessLog(operateName = "表单的查询",description = "${param.btmname}里的${param.formDefineId}") |
| | | public BaseResult<UIFormDataVO> getDataForForm(UIFormQuery formQuery){ |
| | | return BaseResult.success(uiDataService.getDataForForm(formQuery)); |
| | |
| | | * @return 执行的结果 |
| | | */ |
| | | @PostMapping("/addSave") |
| | | @VciUnCheckRight |
| | | @VciBusinessLog(operateName = "添加数据",description = "${param.btmname}") |
| | | public BaseResult<Map<String,Object>> addSave(@RequestBody FormDataDTO formDataDTO){ |
| | | return uiDataService.addSave(formDataDTO); |