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
f4364c20
Commit
f4364c20
authored
Apr 14, 2023
by
songyinghui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 门店接口返回企业id
parent
eb527e39
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
WxStaffController.java
...m/gic/haoban/manage/web/controller/WxStaffController.java
+2
-0
StoreListVO.java
...c/main/java/com/gic/haoban/manage/web/vo/StoreListVO.java
+11
-0
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/WxStaffController.java
View file @
f4364c20
...
@@ -1724,6 +1724,7 @@ public class WxStaffController extends WebBaseController {
...
@@ -1724,6 +1724,7 @@ public class WxStaffController extends WebBaseController {
vo
.
setStoreId
(
store
.
getStoreId
());
vo
.
setStoreId
(
store
.
getStoreId
());
vo
.
setStoreName
(
store
.
getStoreName
());
vo
.
setStoreName
(
store
.
getStoreName
());
vo
.
setStoreCode
(
store
.
getStoreCode
());
vo
.
setStoreCode
(
store
.
getStoreCode
());
vo
.
setEnterpriseId
(
store
.
getEnterpriseId
());
voList
.
add
(
vo
);
voList
.
add
(
vo
);
}
}
}
}
...
@@ -1789,6 +1790,7 @@ public class WxStaffController extends WebBaseController {
...
@@ -1789,6 +1790,7 @@ public class WxStaffController extends WebBaseController {
vo
.
setStoreId
(
dto
.
getStoreId
());
vo
.
setStoreId
(
dto
.
getStoreId
());
vo
.
setStoreName
(
dto
.
getStoreName
());
vo
.
setStoreName
(
dto
.
getStoreName
());
vo
.
setStoreCode
(
dto
.
getStoreCode
());
vo
.
setStoreCode
(
dto
.
getStoreCode
());
vo
.
setEnterpriseId
(
dto
.
getEnterpriseId
());
retList
.
add
(
vo
);
retList
.
add
(
vo
);
}
}
return
retList
;
return
retList
;
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/vo/StoreListVO.java
View file @
f4364c20
...
@@ -7,6 +7,9 @@ public class StoreListVO implements Serializable{
...
@@ -7,6 +7,9 @@ public class StoreListVO implements Serializable{
private
String
storeId
;
private
String
storeId
;
private
String
storeName
;
private
String
storeName
;
private
String
storeCode
;
private
String
storeCode
;
private
String
enterpriseId
;
public
String
getStoreId
()
{
public
String
getStoreId
()
{
return
storeId
;
return
storeId
;
}
}
...
@@ -25,4 +28,12 @@ public class StoreListVO implements Serializable{
...
@@ -25,4 +28,12 @@ public class StoreListVO implements Serializable{
public
void
setStoreCode
(
String
storeCode
)
{
public
void
setStoreCode
(
String
storeCode
)
{
this
.
storeCode
=
storeCode
;
this
.
storeCode
=
storeCode
;
}
}
public
String
getEnterpriseId
()
{
return
enterpriseId
;
}
public
void
setEnterpriseId
(
String
enterpriseId
)
{
this
.
enterpriseId
=
enterpriseId
;
}
}
}
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