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
9c8a382b
Commit
9c8a382b
authored
Mar 02, 2020
by
huangZW
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
111
parent
34b6e16f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
StoreController.java
...com/gic/haoban/manage/web/controller/StoreController.java
+6
-0
StoreVO.java
...x/src/main/java/com/gic/haoban/manage/web/vo/StoreVO.java
+7
-0
No files found.
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/controller/StoreController.java
View file @
9c8a382b
...
...
@@ -71,6 +71,12 @@ public class StoreController extends WebBaseController{
VO
.
setStoreName
(
dto
.
getDepartmentName
());
VO
.
setWxEnterpriseId
(
dto
.
getWxEnterpriseId
());
VO
.
setStoreImg
(
""
);
//先置空
if
(
org
.
apache
.
commons
.
lang
.
StringUtils
.
isNotBlank
(
dto
.
getRelatedId
())){
StoreDTO
storeDTO
=
storeService
.
getStore
(
dto
.
getRelatedId
());
if
(
storeDTO
!=
null
){
VO
.
setEnterpriseId
(
storeDTO
.
getEnterpriseId
());
}
}
resultList
.
add
(
VO
);
}
//2、获取关联表数据
...
...
haoban-manage3-wx/src/main/java/com/gic/haoban/manage/web/vo/StoreVO.java
View file @
9c8a382b
...
...
@@ -14,12 +14,19 @@ public class StoreVO implements Serializable {
private
String
staffId
;
private
String
storeName
;
private
String
wxEnterpriseId
;
private
String
enterpriseId
;
private
int
bindFlag
;
private
String
staffDepartmentRelatedId
;
private
String
clerkCode
;
private
String
storeImg
;
private
int
clerkType
;
public
String
getEnterpriseId
()
{
return
enterpriseId
;
}
public
void
setEnterpriseId
(
String
enterpriseId
)
{
this
.
enterpriseId
=
enterpriseId
;
}
public
int
getClerkType
()
{
return
clerkType
;
}
...
...
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