Commit ef584eca authored by hongguangwu's avatar hongguangwu

1.7.24 - 户配置加是否抓取身份证,是否抓取合同

parent 7adb1052
......@@ -72,7 +72,6 @@ public class TSocialFriendPushServiceImpl extends ServiceImpl<TSocialFriendMappe
private final RestTemplate restTemplate;
private final SocialFriendConfig socialFriendConfig;
private final TSocialInfoService tSocialInfoService;
private final TSocialDeadlineInfoService tSocialDeadlineInfoService;
private final TSocialSoldierLogService tSocialSoldierLogService;
private final TSocialFriendBackLogService tSocialFriendBackLogService;
......@@ -432,13 +431,13 @@ public class TSocialFriendPushServiceImpl extends ServiceImpl<TSocialFriendMappe
}
}
if (!socialInfoUpdate.isEmpty()) {
tSocialInfoService.updateBatchById(socialInfoUpdate);
this.updateBatchById(socialInfoUpdate);
}
if (!backLogList.isEmpty()) {
tSocialFriendBackLogService.saveBatch(backLogList);
}
if (!renGongList.isEmpty()) {
tSocialInfoService.updateBatchById(renGongList);
this.updateBatchById(renGongList);
}
if (!logList.isEmpty()) {
tSocialSoldierLogService.saveBatch(logList);
......@@ -762,10 +761,10 @@ public class TSocialFriendPushServiceImpl extends ServiceImpl<TSocialFriendMappe
tSocialFriendBackLogService.saveBatch(backLogList);
}
if (!socialInfoUpdate.isEmpty()) {
tSocialInfoService.updateBatchById(socialInfoUpdate);
this.updateBatchById(socialInfoUpdate);
}
if (!renGongList.isEmpty()) {
tSocialInfoService.updateBatchById(renGongList);
this.updateBatchById(renGongList);
}
if (!logList.isEmpty()) {
tSocialSoldierLogService.saveBatch(logList);
......
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