Commit f083a0ff authored by Quxl's avatar Quxl

x

parent bdffb70e
......@@ -179,7 +179,7 @@ public class FilmReportServiceImpl implements FilmReportService {
@Override
public Rjx queryFilmReport(Integer user_id) {
String base = "select rr.*, r.enroll_type_id from fc_review_record rr left join fc_review r on r.id = rr.review_id";
String base = "select rr.*, r.enroll_type_id from fc_review_record rr left join fc_review r on r.id = rr.review_id where rr.user_id = " + user_id;
Integer count_quanbu = jdbcTemplate.queryForInt("select count(t.*) from (" + base + ") t");
Integer count_canzan = jdbcTemplate.queryForInt("select count(t.*) from (" + base + ") t where review_state = 5 or (t.review_state = 1 and t.enroll_type_id == 4)");
......
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