Commit 4e305168 authored by Quxl's avatar Quxl

x

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