feat: There is no way the
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user