Commit 9051ff54 authored by Quxl's avatar Quxl

x

parent ac7690fc
......@@ -157,14 +157,19 @@ public class FilmReportServiceImpl implements FilmReportService {
+ "fmf.en_name en_name, "
+ "fmf.cn_name cn_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 "
+ "from "
+ "fc_member_film_playactor fmfp, "
+ "fc_member_film fmf "
+ "fc_member_film fmf, "
+ "fc_review r "
+ "where "
+ "fmfp.film_id = fmf.id "
+ "and "
+ "fmfp.playactor_name = ?";
+ "and r.film_id = fmf.id "
+ "and fmfp.playactor_name = ?";
List<Map<String, Object>> list = jdbcTemplate.queryForList(sql, playactor_name);
Map<String, Object> res = new HashMap<>();
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