Commit 76bddaed authored by Quxl's avatar Quxl

x

parent b33f150d
...@@ -470,7 +470,7 @@ public class FilmServiceImpl implements FilmService { ...@@ -470,7 +470,7 @@ public class FilmServiceImpl implements FilmService {
public synchronized Integer pass(Long member_film_id) { public synchronized Integer pass(Long member_film_id) {
this.updateEnroll(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) + 1 from fc_member_film");
String sql = "update fc_member_film set film_no = ?, apply_state = ?, upload_state = ?, pass_time = ? where id = ?"; String sql = "update fc_member_film set film_no = ?, apply_state = ?, upload_state = ?, pass_time = ? where id = ? and (film_no is null or film_no = '')";
jdbcTemplate.executeUpdate(sql, film_no , 2, 0, System.currentTimeMillis()/1000L, member_film_id); jdbcTemplate.executeUpdate(sql, film_no , 2, 0, System.currentTimeMillis()/1000L, member_film_id);
return film_no; 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