Commit 15af6e65 authored by Quxl's avatar Quxl

x

parent e3f37695
......@@ -101,7 +101,7 @@ public class AdminUserServiceImpl implements AdminUserService {
@Override
public List<Map<String, Object>> getReviewGroupList(Integer review_id) {
String sql = "select g.* from fc_user_group g, fc_user_group_fun fn, fc_review r where g.group_id = fn.group_id and fn.fun_id = r.enroll_type_id and r.id = ?";
String sql = "select g.* from fc_user_group g, fc_user_group_fun fn, fc_member_film_enroll mfe, fc_review r where g.group_id = fn.group_id and fn.fun_id = mfe.enroll_type_id and mfe.film_id = r.film_id and r.id = ?";
return jdbcTemplate.queryForList(sql, review_id);
}
......
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