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
133a4d52
Commit
133a4d52
authored
Aug 19, 2022
by
墨竹
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:根据staffid查询userid
parent
2fdf7719
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
MessageApiService.java
.../com/gic/haoban/manage/api/service/MessageApiService.java
+2
-2
MessageApiServiceImpl.java
...anage/service/service/out/impl/MessageApiServiceImpl.java
+2
-2
No files found.
haoban-manage3-api/src/main/java/com/gic/haoban/manage/api/service/MessageApiService.java
View file @
133a4d52
...
@@ -68,11 +68,11 @@ public interface MessageApiService {
...
@@ -68,11 +68,11 @@ public interface MessageApiService {
* 获取新的微信用户id
* 获取新的微信用户id
*
*
* @param wxEnterpriseId 微信企业id
* @param wxEnterpriseId 微信企业id
* @param
wxUser
Id 微信用户id
* @param
staff
Id 微信用户id
* @return {@link String }
* @return {@link String }
* @author mozhu
* @author mozhu
* @date 2022-03-10 13:48:10
* @date 2022-03-10 13:48:10
*/
*/
String
getNewWxUserId
(
String
wxEnterpriseId
,
String
wxUser
Id
);
String
getNewWxUserId
ByStaffId
(
String
wxEnterpriseId
,
String
staff
Id
);
}
}
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/out/impl/MessageApiServiceImpl.java
View file @
133a4d52
...
@@ -582,12 +582,12 @@ public class MessageApiServiceImpl implements MessageApiService {
...
@@ -582,12 +582,12 @@ public class MessageApiServiceImpl implements MessageApiService {
}
}
@Override
@Override
public
String
getNewWxUserId
(
String
wxEnterpriseId
,
String
wxUser
Id
)
{
public
String
getNewWxUserId
ByStaffId
(
String
wxEnterpriseId
,
String
staff
Id
)
{
WxEnterpriseQwDTO
qwDTO
=
this
.
wxEnterpriseService
.
getQwInfo
(
wxEnterpriseId
)
;
WxEnterpriseQwDTO
qwDTO
=
this
.
wxEnterpriseService
.
getQwInfo
(
wxEnterpriseId
)
;
if
(
qwDTO
==
null
)
{
if
(
qwDTO
==
null
)
{
return
""
;
return
""
;
}
}
TabHaobanStaff
tabHaobanStaff
=
staffService
.
selectBy
UserIdAndEnterpriseId
(
wxUserId
,
wxEnterprise
Id
);
TabHaobanStaff
tabHaobanStaff
=
staffService
.
selectBy
Id
(
staff
Id
);
if
(
tabHaobanStaff
==
null
)
{
if
(
tabHaobanStaff
==
null
)
{
return
""
;
return
""
;
}
}
...
...
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