Commit 90e8f8d0 authored by Quxl's avatar Quxl

x

parent 60b98f21
...@@ -386,8 +386,8 @@ public class FilmServiceImpl implements FilmService { ...@@ -386,8 +386,8 @@ 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 = ?, 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, 3, apply_state_intro, member_film_id); jdbcTemplate.executeUpdate(sql, 1, System.currentTimeMillis()/1000L, 3, apply_state_intro, member_film_id);
} }
@Override @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