Commit 6a4055ef by kangxiaoshan

校验客户主账号

parent b0a3c50e
......@@ -2376,7 +2376,7 @@ public class ContractServiceImpl implements ContractService {
emailDic = emailStream.collect(Collectors.toMap(v -> v, v -> v, (v1, v2) -> v1));
}
//查询腾讯云 服务器上的账号
/*//查询腾讯云 服务器上的账号
String emailQ = String.join(",", accountsEmail).replace(",", "','");
jdbcTemplateqCloud.query("select email from account where is_super_user is true and email in (?) ", new String[]{"'" + emailQ + "'"}, new RowMapper<Map>() {
@Override
......@@ -2384,7 +2384,7 @@ public class ContractServiceImpl implements ContractService {
emailDic.put(resultSet.getString("email"), resultSet.getString("email"));
return null;
}
});
});*/
for (int i = 0; i < accountsEmail.size(); i++) {
String e = accountsEmail.get(i);
......
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