chore(bpm): 新增数据库清理脚本并为用户同步接口添加Swagger注解

This commit is contained in:
wsm
2026-07-29 09:59:00 +08:00
parent bc0ec8f354
commit 7a1c2488c8
2 changed files with 325 additions and 0 deletions
@@ -37,6 +37,8 @@ import org.jeecg.modules.extbpm.util.JSONHelper;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.data.domain.Sort;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
@@ -60,6 +62,7 @@ import java.util.stream.Collectors;
* @date 2019-03-15
* @version V1.0
*/
@Tag(name = "流程定义")
@RestController("extActProcessController")
@RequestMapping("/act/process/extActProcess")
@Slf4j
@@ -570,6 +573,7 @@ public class ExtActProcessController {
* @param extActProcess
* @return
*/
@Operation(summary = "同步用户到Flowable引擎")
@PutMapping(value = "/doSyncUser")
public Result<ExtActProcess> doSyncUser(HttpServletRequest request) {
Result<ExtActProcess> result = new Result<ExtActProcess>();