Commit 10fcc19a authored by Quxl's avatar Quxl

x

parent ca53fa95
......@@ -57,7 +57,6 @@ public class ReviewServiceImpl implements ReviewService {
.eq("mf.film_type_name", film_type_name)
.eq("mf.film_type_name_short", film_type_name_short)
.eq("mf.film_country", film_country)
.gt("r.review_round", 0)
.eq("r.review_round", review_round)
.eq("r.review_state", review_state)
.eq("r.allot_state", allot_state)
......@@ -135,7 +134,7 @@ public class ReviewServiceImpl implements ReviewService {
@Override
public List<Map<String, Object>> queryBestMvListByGroup(String keyword, Integer user_group_id, Integer review_round, String ext_type, Page page) {
XRException.assertNotBlank("选片轮数不能为空", review_round);
String sql = "select r.* from fc_review r where r.enroll_type_id = 2 and review_round >= " + review_round;
String sql = "select r.* from fc_review r left join fc_ where r.enroll_type_id = 2 and review_round >= " + review_round;
//TODO
return null;
}
......
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