| | |
| | | Set<String> specialIdSets = new HashSet<>();
|
| | | Set<Long> uidSets = new HashSet<>();
|
| | |
|
| | | for (TaoBaoPunishOrder order : orderList) {
|
| | | if (!StringUtil.isNullOrEmpty(order.getRelationId()))
|
| | | relationIdSets.add(order.getRelationId());
|
| | |
|
| | | if (!StringUtil.isNullOrEmpty(order.getSpecialId()))
|
| | | specialIdSets.add(order.getSpecialId());
|
| | |
|
| | | doPunishOrder(order, uidSets);
|
| | | }
|
| | | // for (TaoBaoPunishOrder order : orderList) {
|
| | | // if (!StringUtil.isNullOrEmpty(order.getRelationId()))
|
| | | // relationIdSets.add(order.getRelationId());
|
| | | //
|
| | | // if (!StringUtil.isNullOrEmpty(order.getSpecialId()))
|
| | | // specialIdSets.add(order.getSpecialId());
|
| | | //
|
| | | // doPunishOrder(order, uidSets);
|
| | | // }
|
| | |
|
| | | for (Iterator<String> its = relationIdSets.iterator(); its.hasNext();) {
|
| | | String relationId = its.next();
|