|
|
@@ -93,9 +93,6 @@ public class Scheduler {
|
|
|
|
|
|
private final AccountDoubleVerifyRecordMapper doubleVerifyRecordMapper;
|
|
|
|
|
|
- private final AccountDoubleVerifyRecordMapper accountDoubleVerifyRecordMapper;
|
|
|
-
|
|
|
-
|
|
|
/**
|
|
|
* 每5分钟清理过期账号
|
|
|
*/
|
|
|
@@ -440,7 +437,7 @@ public class Scheduler {
|
|
|
Long goodsId = 18l;
|
|
|
List<AccountDoubleVerifyRecord> doubleVerifyRecords = groupsMapper.selectGPTDoubleVerifyTrips(goodsId);
|
|
|
doubleVerifyRecords.forEach(data -> {
|
|
|
- AccountDoubleVerifyRecord exist = accountDoubleVerifyRecordMapper.selectOne(Wrappers.lambdaQuery(AccountDoubleVerifyRecord.class)
|
|
|
+ AccountDoubleVerifyRecord exist = doubleVerifyRecordMapper.selectOne(Wrappers.lambdaQuery(AccountDoubleVerifyRecord.class)
|
|
|
.eq(AccountDoubleVerifyRecord::getAccountId, data.getAccountId())
|
|
|
.eq(AccountDoubleVerifyRecord::getDeleted, true).last("limit 1"));
|
|
|
if (exist == null) {
|