|
|
@@ -156,7 +156,7 @@ public class AuditProecessController extends BladeController {
|
|
|
@ApiOperationSupport(order = 2)
|
|
|
@ApiOperation(value = "批量审批", notes = "传入auditProecessDTOList")
|
|
|
public R batchOperation(@ApiParam(value = "主键集合", required = true) @RequestParam String ids,
|
|
|
- @ApiParam(value = "操作状态", required = true) @RequestParam String auditStatus)
|
|
|
+ @ApiParam(value = "操作状态", required = true) @RequestParam Integer operate)
|
|
|
{
|
|
|
LambdaQueryWrapper<AuditProecess> auditProecessLambdaQueryWrapper=new LambdaQueryWrapper<>();
|
|
|
auditProecessLambdaQueryWrapper.in(AuditProecess::getId, Func.toLongList(ids));
|
|
|
@@ -165,7 +165,7 @@ public class AuditProecessController extends BladeController {
|
|
|
{
|
|
|
throw new SecurityException("未查询相关数据,禁止操作");
|
|
|
}
|
|
|
- auditProecessService.batchOperation(proecessList,auditStatus);
|
|
|
+ auditProecessService.batchOperation(proecessList,operate);
|
|
|
return R.success("操作成功");
|
|
|
}
|
|
|
|