Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-webapp-plug
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
base_platform_enterprise
gic-webapp-plug
Commits
e0a47ed3
Commit
e0a47ed3
authored
Feb 23, 2021
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
门店选择器value数据结构调整
parent
8e741e4c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
StoreController.java
...ain/java/com/gic/plug/web/controller/StoreController.java
+3
-3
No files found.
src/main/java/com/gic/plug/web/controller/StoreController.java
View file @
e0a47ed3
...
@@ -219,14 +219,14 @@ public class StoreController {
...
@@ -219,14 +219,14 @@ public class StoreController {
public
RestResponse
getStoreWidget
(
Integer
storeWidgetId
)
throws
ClassNotFoundException
{
public
RestResponse
getStoreWidget
(
Integer
storeWidgetId
)
throws
ClassNotFoundException
{
ServiceResponse
<
StoreWidgetDTO
>
response
=
this
.
storeWidgetApiService
.
getStoreWidget
(
storeWidgetId
);
ServiceResponse
<
StoreWidgetDTO
>
response
=
this
.
storeWidgetApiService
.
getStoreWidget
(
storeWidgetId
);
StoreWidgetVO
storeWidgetVO
=
EntityUtil
.
changeEntityByJSON
(
StoreWidgetVO
.
class
,
response
.
getResult
());
StoreWidgetVO
storeWidgetVO
=
EntityUtil
.
changeEntityByJSON
(
StoreWidgetVO
.
class
,
response
.
getResult
());
storeWidgetVO
.
setScreenBack
(
this
.
getScreenBack
(
storeWidgetVO
.
getSearchParam
()));
//
storeWidgetVO.setScreenBack(this.getScreenBack(storeWidgetVO.getSearchParam()));
return
RestResponse
.
success
(
storeWidgetVO
);
return
RestResponse
.
success
(
storeWidgetVO
);
}
}
@RequestMapping
(
"screen-back"
)
@RequestMapping
(
"screen-back"
)
@ResponseBody
@ResponseBody
public
Object
screenBack
(
String
param
)
throws
ClassNotFoundException
{
public
Object
screenBack
(
String
param
)
throws
ClassNotFoundException
{
return
RestResponse
.
success
(
this
.
getScreenBack
(
param
)
);
return
RestResponse
.
success
();
}
}
@RequestMapping
(
"get-user-store-resource"
)
@RequestMapping
(
"get-user-store-resource"
)
...
@@ -256,7 +256,7 @@ public class StoreController {
...
@@ -256,7 +256,7 @@ public class StoreController {
StoreResourceVO
vo
=
EntityUtil
.
changeEntityNew
(
StoreResourceVO
.
class
,
storeWidgetDTO
);
StoreResourceVO
vo
=
EntityUtil
.
changeEntityNew
(
StoreResourceVO
.
class
,
storeWidgetDTO
);
vo
.
setSearchJson
(
storeWidgetDTO
.
getSearchParam
());
vo
.
setSearchJson
(
storeWidgetDTO
.
getSearchParam
());
vo
.
setSceenBack
(
getScreenBack
(
storeWidgetDTO
.
getSearchParam
()));
//
vo.setSceenBack(getScreenBack(storeWidgetDTO.getSearchParam()));
return
vo
;
return
vo
;
}
}
}
}
...
...
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