feat: There is no way the

This commit is contained in:
super_liu
2021-09-16 15:05:06 +08:00
parent d408dfd55d
commit 83812a2668
@@ -45,6 +45,19 @@ public class TaskController {
@Autowired
private IBusProcessEntrustService iBusProcessEntrustService;
@ApiOperation(value = "流程实例明细验证是否完成")
@GetMapping("/get_verify_by_instance")
public long get_verify_by_instance(String taskId,String pId) {
Map<String, Object> map = new TreeMap<>();
QueryWrapper queryWrapper = new QueryWrapper();
queryWrapper.eq("TASK_ID",taskId);
queryWrapper.eq("P_ID",pId);
queryWrapper.eq("COMMIT_FLAG","0");
long count = iBusProcessNewService.count(queryWrapper);
return count;
}
@ApiOperation(value = "流程实例明细列表")
@ApiImplicitParam(name = "prcNum", value = "流程实例id")
@GetMapping("/get_list_by_instance")