Commit 51d2c921 by qwmqiuwenmin

fix

parent 5365cbad
...@@ -8,10 +8,10 @@ public enum PreDealTypeEnum { ...@@ -8,10 +8,10 @@ public enum PreDealTypeEnum {
group(0), group(0),
store(1), store(1),
clerk(2), clerk(2),
friend_clerk(3), friend_clerk(6),
friend(4), friend(8),
self_friend(5), self_friend(7),
friend_merge(6); friend_merge(9);
private int val; private int val;
PreDealTypeEnum(int val) { PreDealTypeEnum(int val) {
......
...@@ -11,9 +11,10 @@ public enum SyncTaskStatusEnum { ...@@ -11,9 +11,10 @@ public enum SyncTaskStatusEnum {
compute(4), compute(4),
exception_compute(5), exception_compute(5),
exception_close(6), exception_close(6),
self_friend_sync(7), friend_clerk_sync(7),
friend_sync(8), self_friend_sync(8),
merge_friend_sync(9); friend_sync(9),
merge_friend_sync(10);
private int val; private int val;
......
...@@ -652,6 +652,6 @@ public class DealSyncOperationApiServiceImpl implements DealSyncOperationApiServ ...@@ -652,6 +652,6 @@ public class DealSyncOperationApiServiceImpl implements DealSyncOperationApiServ
preDealService.insert(dealLogList); preDealService.insert(dealLogList);
HashSet<String> hashSet = (HashSet<String>) dealLogList.stream().map(TabHaobanPreDealLog::getDataId).collect(Collectors.toSet()); HashSet<String> hashSet = (HashSet<String>) dealLogList.stream().map(TabHaobanPreDealLog::getDataId).collect(Collectors.toSet());
dealDepartmentToMq(taskId, hashSet, SyncTaskStatusEnum.friend_sync); dealDepartmentToMq(taskId, hashSet, SyncTaskStatusEnum.friend_clerk_sync);
} }
} }
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