Commit 87cefd5d authored by Quxl's avatar Quxl

x

parent 8fdb304b
......@@ -389,9 +389,9 @@ public class FilmServiceImpl implements FilmService {
}
@Override
public void pass(Long member_film_id) {
public synchronized void pass(Long member_film_id) {
this.updateEnroll(member_film_id);
String sql = "update fc_member_film set apply_state = ?, pass_time = ? where id = ?";
String sql = "update fc_member_film set film_no = (select max(film_no) + 1 from fc_member_film), apply_state = ?, pass_time = ? where id = ?";
jdbcTemplate.executeUpdate(sql, 2, System.currentTimeMillis()/1000L, member_film_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