Commit 6392b95e authored by Quxl's avatar Quxl

x

parent bd004264
...@@ -509,7 +509,7 @@ public class FilmServiceImpl implements FilmService { ...@@ -509,7 +509,7 @@ public class FilmServiceImpl implements FilmService {
String sql = "update fc_member_film set pass_time = ?, apply_state = 3, apply_state_intro = ? where id = ?"; String sql = "update fc_member_film set pass_time = ?, apply_state = 3, apply_state_intro = ? where id = ?";
jdbcTemplate.executeUpdate(sql, System.currentTimeMillis()/1000L, apply_state_intro, member_film_id); jdbcTemplate.executeUpdate(sql, System.currentTimeMillis()/1000L, apply_state_intro, member_film_id);
} else { } else {
String sql = "update fc_member_film set pass_time = ?, state = 1, apply_state = 1, apply_state_intro = ? where id = ?"; String sql = "update fc_member_film set pass_time = ?, apply_state = 1, apply_state_intro = ?, state = 1 where id = ?";
jdbcTemplate.executeUpdate(sql, System.currentTimeMillis()/1000L, apply_state_intro, member_film_id); jdbcTemplate.executeUpdate(sql, System.currentTimeMillis()/1000L, apply_state_intro, member_film_id);
} }
} }
......
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