Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
haoban3.0
haoban-manage3.0
Commits
51d2c921
Commit
51d2c921
authored
Nov 23, 2020
by
qwmqiuwenmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
5365cbad
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
8 deletions
+9
-8
PreDealTypeEnum.java
...java/com/gic/haoban/manage/api/enums/PreDealTypeEnum.java
+4
-4
SyncTaskStatusEnum.java
...a/com/gic/haoban/manage/api/enums/SyncTaskStatusEnum.java
+4
-3
DealSyncOperationApiServiceImpl.java
...ice/service/out/impl/DealSyncOperationApiServiceImpl.java
+1
-1
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/enums/PreDealTypeEnum.java
View file @
51d2c921
...
...
@@ -8,10 +8,10 @@ public enum PreDealTypeEnum {
group
(
0
),
store
(
1
),
clerk
(
2
),
friend_clerk
(
3
),
friend
(
4
),
self_friend
(
5
),
friend_merge
(
6
);
friend_clerk
(
6
),
friend
(
8
),
self_friend
(
7
),
friend_merge
(
9
);
private
int
val
;
PreDealTypeEnum
(
int
val
)
{
...
...
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/enums/SyncTaskStatusEnum.java
View file @
51d2c921
...
...
@@ -11,9 +11,10 @@ public enum SyncTaskStatusEnum {
compute
(
4
),
exception_compute
(
5
),
exception_close
(
6
),
self_friend_sync
(
7
),
friend_sync
(
8
),
merge_friend_sync
(
9
);
friend_clerk_sync
(
7
),
self_friend_sync
(
8
),
friend_sync
(
9
),
merge_friend_sync
(
10
);
private
int
val
;
...
...
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/DealSyncOperationApiServiceImpl.java
View file @
51d2c921
...
...
@@ -652,6 +652,6 @@ public class DealSyncOperationApiServiceImpl implements DealSyncOperationApiServ
preDealService
.
insert
(
dealLogList
);
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
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment