!96 chore(bpm): 新增数据库清理脚本并为用户同步接口添加Swagger注解
Merge pull request !96 from wsm/chore/clear_db
This commit is contained in:
+4
@@ -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>();
|
||||
|
||||
Reference in New Issue
Block a user