Commit ef584eca authored by hongguangwu's avatar hongguangwu

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

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