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
1
Merge Requests
1
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
64800efa
Commit
64800efa
authored
Oct 28, 2022
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
/
parent
09289533
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
8 deletions
+3
-8
WxEnterpriseInfoController.java
...ban/manage/web/controller/WxEnterpriseInfoController.java
+0
-2
WxStaffController.java
...m/gic/haoban/manage/web/controller/WxStaffController.java
+3
-6
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/WxEnterpriseInfoController.java
View file @
64800efa
...
...
@@ -18,10 +18,8 @@ import com.gic.haoban.app.customer.service.api.service.CustomerApiService;
import
com.gic.haoban.app.customer.service.api.service.StaffMemberRelationApiService
;
import
com.gic.haoban.common.anno.HttpLimit
;
import
com.gic.haoban.common.anno.IgnoreLogin
;
import
com.gic.haoban.common.utils.AuthRequestWellDoneUtil
;
import
com.gic.haoban.common.utils.EntityUtil
;
import
com.gic.haoban.common.utils.HaobanResponse
;
import
com.gic.haoban.common.utils.JwtUtil
;
import
com.gic.haoban.manage.api.dto.*
;
import
com.gic.haoban.manage.api.enums.SecretTypeEnum
;
import
com.gic.haoban.manage.api.service.*
;
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/WxStaffController.java
View file @
64800efa
...
...
@@ -1547,11 +1547,9 @@ public class WxStaffController extends WebBaseController {
/**
* 会员关联数量
*
* @return
*/
@RequestMapping
(
"external-friend-count"
)
public
RestResponse
friendCount
(
String
staffId
)
{
public
RestResponse
<
Object
>
friendCount
(
String
staffId
)
{
StaffDTO
staff
=
staffApiService
.
selectById
(
staffId
);
if
(
staff
==
null
)
{
return
RestResponse
.
successResult
(
0
);
...
...
@@ -1564,7 +1562,7 @@ public class WxStaffController extends WebBaseController {
// 区经门店列表
@ResponseBody
@RequestMapping
(
"/list-clerk-store"
)
public
HaobanResponse
listClerkStore
(
String
enterpriseId
,
String
clerkId
,
String
searchParams
)
{
public
RestResponse
<
Object
>
listClerkStore
(
String
enterpriseId
,
String
clerkId
,
String
searchParams
)
{
List
<
StoreListVO
>
storeList
=
new
ArrayList
<>();
StoreListVO
s1
=
new
StoreListVO
();
s1
.
setStoreId
(
"1"
);
...
...
@@ -1574,7 +1572,6 @@ public class WxStaffController extends WebBaseController {
page
.
setResult
(
storeList
);
page
.
setTotalCount
(
10
);
page
.
setPageSize
(
20
);
return
resultResponse
(
HaoBanErrCode
.
ERR_1
,
page
);
return
RestResponse
.
successResult
(
page
);
}
}
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