fix: 修复办理Url重复问题

This commit is contained in:
2023-10-26 11:13:56 +08:00
parent f0d1dd2096
commit 5e77f69ad5
2 changed files with 3 additions and 1 deletions
@@ -1,5 +1,6 @@
package com.jero.modules.activiti.process.common.entity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@@ -10,6 +11,7 @@ import java.util.Date;
* @Date: 2023/10/26 7:46
*/
@Data
@ApiModel(value="流程通用信息对象", description="流程通用信息对象")
public class CommonVO {
/**
@@ -89,7 +89,7 @@ public class ProcessESInitChangeController {
*/
@AutoLog(value = "企标立项变更流程-办理")
@ApiOperation(value="企标立项变更流程-办理", notes="企标立项变更流程-办理")
@PostMapping("/save")
@PostMapping("/handle")
public Result<?> handle(@RequestParam(value = "taskId") String taskId) {
return Result.OK(initChangeService.getHandleData(taskId));
}