Commit 5a8dcec1 authored by Quxl's avatar Quxl

x

parent 469146dd
...@@ -49,7 +49,7 @@ public class FilmGroupServiceImpl implements FilmGroupService { ...@@ -49,7 +49,7 @@ public class FilmGroupServiceImpl implements FilmGroupService {
@Override @Override
public void updateFilmGroupId(Integer[] film_id, Integer group_id, String group_remark) { public void updateFilmGroupId(Integer[] film_id, Integer group_id, String group_remark) {
Object[][] args = new Integer[film_id.length][]; Object[][] args = new Object[film_id.length][];
for(int i = 0; i < film_id.length; i++) { for(int i = 0; i < film_id.length; i++) {
args[i] = new Object[] {group_id, group_remark, film_id[i]}; args[i] = new Object[] {group_id, group_remark, film_id[i]};
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment