feat: 优化保存草稿返回信息
将保存草稿的返回信息从"ResultCommon.OK"更改为"操作成功",使用户能够更清楚地了解操作结果。
This commit is contained in:
+1
-1
@@ -283,7 +283,7 @@ public class WorkCenterController {
|
||||
@PostMapping("/save")
|
||||
public Result<?> save(@Validated @RequestBody ProcessInfoVO processInfoVO) {
|
||||
String draftId = processHandleService.saveToDraft(processInfoVO, UserUtils.getUserId());
|
||||
return Result.OK(ResultCommon.OK, draftId);
|
||||
return Result.OK("操作成功", draftId);
|
||||
}
|
||||
|
||||
@AutoLog(value = "删除草稿")
|
||||
|
||||
Reference in New Issue
Block a user