|
|
@@ -104,6 +104,7 @@ public class DistinctionServiceImpl extends BaseServiceImpl<DistinctionMapper, D
|
|
|
public void insertBatch(List<Distinction> list) {
|
|
|
final int SIZE = 64;
|
|
|
for (Distinction distinction : list) {
|
|
|
+ log.info("orderId:"+distinction.getOrderId());
|
|
|
int length = distinction.getUid().length();
|
|
|
if(length % SIZE == 0) {
|
|
|
for (int i = 1; i <= length / SIZE; i++) {
|
|
|
@@ -130,10 +131,11 @@ public class DistinctionServiceImpl extends BaseServiceImpl<DistinctionMapper, D
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ //97%
|
|
|
DistinctionDTO dis = baseMapper.checkDis(distinction.getOperatorId(),dbName,distinction.getUid1(),distinction.getUid2(),
|
|
|
distinction.getUid3(),distinction.getUid4(),distinction.getUid5(),distinction.getUid6(),
|
|
|
distinction.getUid7(),distinction.getUid8(),distinction.getUid9(),
|
|
|
- 58, "2025-01-01 00:00:00");
|
|
|
+ 17, "2025-01-01 00:00:00");
|
|
|
if(dis != null){
|
|
|
distinction.setErrorId(dis.getId());
|
|
|
}
|