Commit 89c00c4a authored by Quxl's avatar Quxl

x

parent b59bb9ea
......@@ -464,8 +464,8 @@ public class FilmServiceImpl implements FilmService {
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");
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);
String sql = "update fc_member_film set film_no = ?, apply_state = 2, upload_state = 0, pass_time = ? where id = ? and (film_no is null or film_no = '')";
jdbcTemplate.executeUpdate(sql, film_no, 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