Commit d2e1e825 authored by Quxl's avatar Quxl

x

parent eff9452d
......@@ -46,7 +46,7 @@ public class AdminAuthServiceImpl implements AdminAuthService {
@Override
public void disableAdmin(Integer[] adminid) {
String sql = "update fc_admin set state = 2 where admin in (" + StringUtil.join("?", ", ", adminid.length) + ")";
String sql = "update fc_admin set state = 2 where adminid in (" + StringUtil.join("?", ", ", adminid.length) + ")";
jdbcTemplate.executeUpdate(sql, (Object[])adminid);
}
......
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