yxk-20260429-增加/saveBpmForm接口,保存业务数据的同时更新流程的json_data
This commit is contained in:
+7
-1
@@ -120,7 +120,13 @@ public class BgPartymatterController extends JeecgController<BgPartymatter, IBgP
|
|||||||
bgPartymatterService.updateById(bgPartymatter);
|
bgPartymatterService.updateById(bgPartymatter);
|
||||||
return Result.OK("编辑成功!");
|
return Result.OK("编辑成功!");
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* 编辑
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@AutoLog(value = "保存业务数据同时更新流程变量jsonData")
|
||||||
|
@Operation(summary="保存业务数据同时更新流程变量jsonData")
|
||||||
@PostMapping(value = "/saveBpmForm")
|
@PostMapping(value = "/saveBpmForm")
|
||||||
public Result<String> saveBpmForm(@RequestBody BgPartymatterBpmSaveDTO dto) {
|
public Result<String> saveBpmForm(@RequestBody BgPartymatterBpmSaveDTO dto) {
|
||||||
if (dto == null || dto.getFormData() == null || oConvertUtils.isEmpty(dto.getFormData().getId())) {
|
if (dto == null || dto.getFormData() == null || oConvertUtils.isEmpty(dto.getFormData().getId())) {
|
||||||
|
|||||||
Reference in New Issue
Block a user