@@ -1326,6 +1326,7 @@ public R<Object> batchAbolish(@RequestParam String ids, String primaryKeyId, @Re
String update = "update u_entrust_info set status=3 where id in(" + String.join(",", idss) + ")";
jdbcTemplate.execute(update);
}
+ return R.success("操作成功");
} catch (Exception e) {
e.printStackTrace();
return R.data(300, false, "废除失败");