Commit 19d62cda authored by Quxl's avatar Quxl

x

parent 375e578d
......@@ -396,8 +396,8 @@ public class FilmServiceImpl implements FilmService {
@Override
public void reject(Long member_film_id, String apply_state_intro) {
String sql = "update fc_member_film set apply_state = ?, apply_state_intro = ? where id = ?";
jdbcTemplate.executeUpdate(sql, 3, apply_state_intro, member_film_id);
String sql = "update fc_member_film set state = ?, apply_state = ?, apply_state_intro = ? where id = ?";
jdbcTemplate.executeUpdate(sql, 1, 3, apply_state_intro, 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