Commit bec2fe67 authored by Quxl's avatar Quxl

x

parent 64e4eee6
......@@ -56,7 +56,7 @@ public class WebApiController {
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
for(Map<String, Object> filmMap : filmList) {
Map<String, Object> map = new HashMap<String, Object>();
Integer id = (Integer)filmMap.get("id");
Integer id = ((Number)filmMap.get("id")).intValue();
Integer film_no = (Integer)filmMap.get("film_no");
String cn_name = (String)filmMap.get("cn_name");
String en_name = (String)filmMap.get("en_name");
......
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