Commit fe40a7e6 authored by Quxl's avatar Quxl

x

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