|
@ -268,6 +268,7 @@ public class PrUserProjectServiceImpl extends BaseServiceImpl<PrUserProjectDao, |
|
|
*/ |
|
|
*/ |
|
|
private Future<?> insertPrVistRecord(TDuckListFormDTO formDTO) { |
|
|
private Future<?> insertPrVistRecord(TDuckListFormDTO formDTO) { |
|
|
return Executors.newCachedThreadPool().submit(()->{ |
|
|
return Executors.newCachedThreadPool().submit(()->{ |
|
|
|
|
|
log.info("insertPrVistRecord start ========="); |
|
|
PrVistRecordDTO param = new PrVistRecordDTO(); |
|
|
PrVistRecordDTO param = new PrVistRecordDTO(); |
|
|
param.setCustomerId(formDTO.getCustomerId()); |
|
|
param.setCustomerId(formDTO.getCustomerId()); |
|
|
param.setUserId(formDTO.getUserId()); |
|
|
param.setUserId(formDTO.getUserId()); |
|
@ -282,6 +283,7 @@ public class PrUserProjectServiceImpl extends BaseServiceImpl<PrUserProjectDao, |
|
|
entity.setId(newestRecord.getId()); |
|
|
entity.setId(newestRecord.getId()); |
|
|
prVistRecordService.updateById(entity); |
|
|
prVistRecordService.updateById(entity); |
|
|
} |
|
|
} |
|
|
|
|
|
log.info("insertPrVistRecord end ========="); |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|