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
QianQiXiang
haoban-manage3.0
Commits
09b858ab
Commit
09b858ab
authored
May 08, 2021
by
bilingfeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix : 接口新增字段返回
parent
5c242cb4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
0 deletions
+68
-0
InfoController.java
.../com/gic/haoban/manage/web/controller/InfoController.java
+8
-0
MemberLoginQo.java
...main/java/com/gic/haoban/manage/web/qo/MemberLoginQo.java
+60
-0
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/InfoController.java
View file @
09b858ab
...
...
@@ -246,6 +246,14 @@ public class InfoController extends WebBaseController{
relatedDTO
.
setGicEnterpriseId
(
qo
.
getGicEnterpriseId
());
staffMemberRelationApiService
.
bindMemberAndStaff
(
relatedDTO
);
//补充字段赋值
user
.
setStaffId
(
staffDTO
.
getStaffId
());
user
.
setWxEnterpriseId
(
staffDTO
.
getWxEnterpriseId
());
user
.
setStaffName
(
staffDTO
.
getStaffName
());
user
.
setPhoneNumber
(
staffDTO
.
getPhoneNumber
());
user
.
setNationCode
(
staffDTO
.
getNationCode
());
user
.
setWxUserId
(
staffDTO
.
getWxUserId
());
List
<
StaffClerkInfoDTO
>
result
=
staffClerkRelationApiService
.
listBindDetailByStaffId
(
staffDTO
.
getStaffId
());
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/qo/MemberLoginQo.java
View file @
09b858ab
...
...
@@ -16,6 +16,18 @@ public class MemberLoginQo implements Serializable {
private
String
corpId
;
private
List
<
StoreMemberVO
>
storeList
;
private
String
staffId
;
private
String
wxEnterpriseId
;
private
String
staffName
;
private
String
phoneNumber
;
private
String
nationCode
;
private
String
wxUserId
;
public
String
getUserId
()
{
return
userId
;
}
...
...
@@ -39,4 +51,52 @@ public class MemberLoginQo implements Serializable {
public
void
setStoreList
(
List
<
StoreMemberVO
>
storeList
)
{
this
.
storeList
=
storeList
;
}
public
String
getStaffId
()
{
return
staffId
;
}
public
void
setStaffId
(
String
staffId
)
{
this
.
staffId
=
staffId
;
}
public
String
getWxEnterpriseId
()
{
return
wxEnterpriseId
;
}
public
void
setWxEnterpriseId
(
String
wxEnterpriseId
)
{
this
.
wxEnterpriseId
=
wxEnterpriseId
;
}
public
String
getStaffName
()
{
return
staffName
;
}
public
void
setStaffName
(
String
staffName
)
{
this
.
staffName
=
staffName
;
}
public
String
getPhoneNumber
()
{
return
phoneNumber
;
}
public
void
setPhoneNumber
(
String
phoneNumber
)
{
this
.
phoneNumber
=
phoneNumber
;
}
public
String
getNationCode
()
{
return
nationCode
;
}
public
void
setNationCode
(
String
nationCode
)
{
this
.
nationCode
=
nationCode
;
}
public
String
getWxUserId
()
{
return
wxUserId
;
}
public
void
setWxUserId
(
String
wxUserId
)
{
this
.
wxUserId
=
wxUserId
;
}
}
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