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
e0821eee
Commit
e0821eee
authored
Feb 02, 2023
by
jinxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
通讯录成员转移接口开发
parent
1f55132a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
StaffController.java
...com/gic/haoban/manage/web/controller/StaffController.java
+5
-3
No files found.
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/controller/StaffController.java
View file @
e0821eee
...
@@ -6,7 +6,9 @@ import java.util.stream.Collectors;
...
@@ -6,7 +6,9 @@ import java.util.stream.Collectors;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
import
javax.servlet.http.HttpServletResponse
;
import
com.alibaba.fastjson.JSONArray
;
import
com.gic.haoban.manage.api.dto.*
;
import
com.gic.haoban.manage.api.dto.*
;
import
com.gic.haoban.manage.api.dto.qdto.TransferActiveCodeQDTO
;
import
com.gic.haoban.manage.api.service.*
;
import
com.gic.haoban.manage.api.service.*
;
import
com.gic.haoban.manage.web.qo.TransferActiveCodeQO
;
import
com.gic.haoban.manage.web.qo.TransferActiveCodeQO
;
import
com.gic.haoban.manage.web.vo.StaffActiveDataVO
;
import
com.gic.haoban.manage.web.vo.StaffActiveDataVO
;
...
@@ -609,9 +611,9 @@ public class StaffController extends WebBaseController {
...
@@ -609,9 +611,9 @@ public class StaffController extends WebBaseController {
public
RestResponse
transferActiveCode
(
@RequestBody
List
<
TransferActiveCodeQO
>
transferActiveCodeQOList
)
{
public
RestResponse
transferActiveCode
(
@RequestBody
List
<
TransferActiveCodeQO
>
transferActiveCodeQOList
)
{
WebLoginDTO
login
=
AuthWebRequestUtil
.
getLoginUser
();
WebLoginDTO
login
=
AuthWebRequestUtil
.
getLoginUser
();
String
wxEnterpriseId
=
login
.
getWxEnterpriseId
();
String
wxEnterpriseId
=
login
.
getWxEnterpriseId
();
StaffActiveDataVO
staffActiveDataVo
=
new
StaffActiveDataVO
(
);
List
<
TransferActiveCodeQDTO
>
transferActiveCodeQDTOList
=
JSONArray
.
parseArray
(
JSONObject
.
toJSONString
(
transferActiveCodeQOList
),
TransferActiveCodeQDTO
.
class
);
ServiceResponse
<
Integer
>
integerServiceResponse
=
staffApiService
.
batchTransferLicense
(
transferActiveCodeQDTOList
,
wxEnterpriseId
);
return
RestResponse
.
successResult
();
return
RestResponse
.
successResult
(
integerServiceResponse
);
}
}
}
}
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