Commit 08a39223 authored by 郝彦辉's avatar 郝彦辉

姓名,手机错误数据修复

parent 35988b1a
...@@ -455,18 +455,19 @@ public class BlackListToolsManagerServiceImpl implements IBlackListToolsManagerS ...@@ -455,18 +455,19 @@ public class BlackListToolsManagerServiceImpl implements IBlackListToolsManagerS
} }
if("copyBlackList".equals(operatType)){ if("copyBlackList".equals(operatType)){
copyBlackListNew(); //copyBlackListNew();
log.warn("该方法值执行一次,已经执行!");
} }
else if("updat_idNoIsPhone".equals(operatType)){ else if("updat_idNoIsPhone".equals(operatType)){
String sql_query = "select b.id, b.uuid, b.name, b.phone_no, b.id_no, b.black_type, b.type, b.join_black_reason, b.max_overdue_days, b.total_overdue_days, b.created_at, b.updated_at " + String sql_query = "select b.id, b.uuid, b.name, b.phone_no, b.id_no, b.black_type, b.type, b.join_black_reason, b.max_overdue_days, b.total_overdue_days, b.created_at, b.updated_at " +
" from tmp_black_grey_list b where LENGTH(b.id_no)=11; "; //5010条 " from tmp_black_grey_list b where LENGTH(b.id_no)=11; "; //5010条
String sql_update = " update tmp_black_grey_list set phone_no=?, phone_no_md5= ?, id_no=?, id_no_md5=? where id=? "; String sql_update = " update tmp_black_grey_list set phone_no=?, phone_no_md5= ?, id_no=?, id_no_md5=?, name=? where id=? ";
updat_idNoIsPhone(sql_query, sql_update, "1"); updat_idNoIsPhone(sql_query, sql_update, "1");
} }
else if("updat_PhoneNot11".equals(operatType)){ else if("updat_PhoneNot11".equals(operatType)){
String sql_query = "select b.id, b.uuid, b.name, b.phone_no, b.id_no, b.black_type, b.type, b.join_black_reason, b.max_overdue_days, b.total_overdue_days, b.created_at, b.updated_at " + String sql_query = "select b.id, b.uuid, b.name, b.phone_no, b.id_no, b.black_type, b.type, b.join_black_reason, b.max_overdue_days, b.total_overdue_days, b.created_at, b.updated_at " +
" from tmp_black_grey_list b where LENGTH(b.phone_no)!=11; "; //5398条 " from tmp_black_grey_list b where LENGTH(b.phone_no)!=11; "; //5398条
String sql_update = " update tmp_black_grey_list set phone_no=?, phone_no_md5= ?, id_no=?, id_no_md5=? where id=? "; String sql_update = " update tmp_black_grey_list set phone_no=?, phone_no_md5= ?, id_no=?, id_no_md5=?, name=? where id=? ";
updat_idNoIsPhone(sql_query, sql_update, "2"); updat_idNoIsPhone(sql_query, sql_update, "2");
} }
......
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