Commit a7a65288 authored by Quxl's avatar Quxl

x

parent d3383c93
......@@ -377,9 +377,14 @@ 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) from fc_member_film");
Integer film_no = null;
try {
film_no = jdbcTemplate.queryForInt("select max(film_no) from fc_member_film");
} catch (Exception e) {
film_no = 0;
}
String sql = "update fc_member_film set film_no = ?, apply_state = ?, upload_state = ?, pass_time = ? where id = ?";
jdbcTemplate.executeUpdate(sql, film_no+1 , 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