Commit 9051ff54 authored by Quxl's avatar Quxl

x

parent ac7690fc
...@@ -157,14 +157,19 @@ public class FilmReportServiceImpl implements FilmReportService { ...@@ -157,14 +157,19 @@ public class FilmReportServiceImpl implements FilmReportService {
+ "fmf.en_name en_name, " + "fmf.en_name en_name, "
+ "fmf.cn_name cn_name, " + "fmf.cn_name cn_name, "
+ "fmfp.playactor_name playactor_name, " + "fmfp.playactor_name playactor_name, "
+ "r.review_state, "
+ "r.review_round, "
+ "r.opt_state, "
+ "r.allot_state, "
+ "DATE_FORMAT(from_unixtime(fmf.create_time),'%Y') apply_year " + "DATE_FORMAT(from_unixtime(fmf.create_time),'%Y') apply_year "
+ "from " + "from "
+ "fc_member_film_playactor fmfp, " + "fc_member_film_playactor fmfp, "
+ "fc_member_film fmf " + "fc_member_film fmf, "
+ "fc_review r "
+ "where " + "where "
+ "fmfp.film_id = fmf.id " + "fmfp.film_id = fmf.id "
+ "and " + "and r.film_id = fmf.id "
+ "fmfp.playactor_name = ?"; + "and fmfp.playactor_name = ?";
List<Map<String, Object>> list = jdbcTemplate.queryForList(sql, playactor_name); List<Map<String, Object>> list = jdbcTemplate.queryForList(sql, playactor_name);
Map<String, Object> res = new HashMap<>(); Map<String, Object> res = new HashMap<>();
res.put("playactor_name", playactor_name); res.put("playactor_name", playactor_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