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
fd7a3020
Commit
fd7a3020
authored
Jul 07, 2022
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
门店查询
parent
2bc0ebce
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
11 deletions
+1
-11
HmStoreController.java
...ic/haoban/manage/web/controller/hm/HmStoreController.java
+1
-3
StoreVO.java
...rc/main/java/com/gic/haoban/manage/web/vo/hm/StoreVO.java
+0
-8
No files found.
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/controller/hm/HmStoreController.java
View file @
fd7a3020
...
...
@@ -204,7 +204,6 @@ public class HmStoreController {
if
(
CollectionUtils
.
isEmpty
(
authStoreIdList
))
{
return
RestResponse
.
failure
(
"-1"
,
"无授权门店"
);
}
StoreSearchDTO
searchDTO
=
new
StoreSearchDTO
();
// 上线门店
searchDTO
.
setStatus
(
"2"
);
...
...
@@ -223,9 +222,8 @@ public class HmStoreController {
page
.
setPageSize
(
basePageInfo
.
getPageSize
());
page
.
setCurrentPage
(
basePageInfo
.
getPageNum
());
Map
<
String
,
Object
>
params
=
new
HashMap
<>();
params
.
put
(
"searchDto"
,
searchDTO
);
page
.
setParams
(
params
);
logger
.
info
(
"
params:
{}"
,
JSON
.
toJSONString
(
page
));
logger
.
info
(
"
查询条件=
{}"
,
JSON
.
toJSONString
(
page
));
Map
<
String
,
Object
>
result
=
storeService
.
getStoreListPage
(
page
);
page
=
(
Page
)
result
.
get
(
"page"
);
List
<
StoreDTO
>
storeList
=
(
List
<
StoreDTO
>)
result
.
get
(
"list"
);
...
...
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/vo/hm/StoreVO.java
View file @
fd7a3020
...
...
@@ -38,12 +38,4 @@ public class StoreVO {
public
void
setStoreCode
(
String
storeCode
)
{
this
.
storeCode
=
storeCode
;
}
public
String
getKey
()
{
return
this
.
storeId
;
}
public
String
getValue
()
{
return
this
.
storeName
;
}
}
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