Commit b2b8966b authored by Quxl's avatar Quxl

x

parent df1c2dbf
...@@ -214,7 +214,7 @@ public class WebUtilController { ...@@ -214,7 +214,7 @@ public class WebUtilController {
for(String no: film_no) { for(String no: film_no) {
nos.add(Integer.valueOf(no).toString()); nos.add(Integer.valueOf(no).toString());
} }
List<Integer> ids = jdbcTemplate.queryForObjects("select id from fc_member_film where in (" + StringUtil.join(", ", "", "", "''", nos) + ")", Integer.class); List<Integer> ids = jdbcTemplate.queryForObjects("select id from fc_member_film where film_no in (" + StringUtil.join(", ", "", "", "''", nos) + ")", Integer.class);
List<String> idList = new ArrayList<String>(); List<String> idList = new ArrayList<String>();
for(Integer id : ids) { for(Integer id : ids) {
idList.add(id.toString()); idList.add(id.toString());
......
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