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
6910b7a3
Commit
6910b7a3
authored
Jan 10, 2022
by
墨竹
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'developer' of
http://git.gicdev.com/haoban3.0/haoban-manage3.0
into developer
parents
4667b7a9
b6b084dd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
TestTaskController.java
...haoban/manage/web/controller/test/TestTaskController.java
+19
-0
No files found.
haoban-manage3-operation-web/src/main/java/com/gic/haoban/manage/web/controller/test/TestTaskController.java
View file @
6910b7a3
...
...
@@ -2,6 +2,7 @@ package com.gic.haoban.manage.web.controller.test;
import
com.gic.haoban.common.utils.HaobanResponse
;
import
com.gic.haoban.manage.api.service.HandoverOperationApiService
;
import
com.gic.haoban.manage.api.service.MemberUnionidRelatedApiService
;
import
com.gic.haoban.manage.web.controller.WebBaseController
;
import
com.gic.haoban.manage.web.errCode.HaoBanErrCode
;
import
com.gic.haoban.task.manage.api.service.TaskQuartzCallbackApiService
;
...
...
@@ -25,6 +26,9 @@ public class TestTaskController extends WebBaseController {
@Autowired
private
HandoverOperationApiService
handoverOperationApiService
;
@Autowired
private
MemberUnionidRelatedApiService
memberUnionidRelatedApiService
;
@RequestMapping
(
"/groupSendCreateEnd"
)
@ResponseBody
public
HaobanResponse
testListVo
(
String
str
)
{
...
...
@@ -81,4 +85,19 @@ public class TestTaskController extends WebBaseController {
handoverOperationApiService
.
dealQywxEnterpriseHandoverResult
(
wxEnterpriseId
);
return
resultResponse
(
HaoBanErrCode
.
ERR_1
);
}
/**
* 处理标签同步
* @param params
* @return
*/
@RequestMapping
(
"/dealFriendTag"
)
@ResponseBody
public
HaobanResponse
dealFriendTag
(
String
params
)
{
if
(
StringUtils
.
isBlank
(
params
))
{
return
resultResponse
(
HaoBanErrCode
.
ERR_2
);
}
memberUnionidRelatedApiService
.
dealQywxExternalUser
(
params
);
return
resultResponse
(
HaoBanErrCode
.
ERR_1
);
}
}
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