|
@@ -1456,7 +1456,7 @@ public R<String> batchDownloadFileToZip(String ids, HttpServletResponse response
|
|
|
String[] idss = query.stream()
|
|
|
.map(item -> String.valueOf(item.getId()))
|
|
|
.toArray(String[]::new);
|
|
|
- String update = "update u_entrust_info set status=3 where id in(" + String.join(",", idss) + ")";
|
|
|
+ String update = "update u_entrust_info set status=4 where id in(" + String.join(",", idss) + ")";
|
|
|
jdbcTemplate.execute(update);
|
|
|
}
|
|
|
return R.success("操作成功");
|