Commit cb194d6f authored by Quxl's avatar Quxl

x

parent dc960308
......@@ -378,8 +378,8 @@ public class FilmServiceImpl implements FilmService {
public synchronized void 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 = ?, pass_time = ? where id = ?";
jdbcTemplate.executeUpdate(sql, film_no, 2, System.currentTimeMillis()/1000L, member_film_id);
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);
}
@Override
......
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