Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-store
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-store
Commits
4a24ba05
Commit
4a24ba05
authored
Oct 11, 2019
by
zhiwj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
营业时间时区问题
parent
2bdf9782
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
StoreController.java
...in/java/com/gic/store/web/controller/StoreController.java
+12
-2
No files found.
gic-store-web/src/main/java/com/gic/store/web/controller/StoreController.java
View file @
4a24ba05
package
com
.
gic
.
store
.
web
.
controller
;
import
com.alibaba.fastjson.JSON
;
import
com.fasterxml.jackson.core.type.TypeReference
;
import
com.fasterxml.jackson.databind.ObjectMapper
;
import
com.gic.api.base.commons.Page
;
import
com.gic.api.base.commons.ServiceResponse
;
import
com.gic.commons.util.EntityUtil
;
...
...
@@ -30,6 +32,7 @@ import org.springframework.web.bind.annotation.RequestBody;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
java.io.IOException
;
import
java.util.ArrayList
;
import
java.util.HashMap
;
import
java.util.List
;
...
...
@@ -64,8 +67,15 @@ public class StoreController {
}
String
businessTimes
=
storeQO
.
getBusinessTimes
();
if
(
StringUtils
.
isNotBlank
(
businessTimes
))
{
List
<
StoreBusinessTimeDTO
>
businessTimeList
=
JSON
.
parseArray
(
businessTimes
,
StoreBusinessTimeDTO
.
class
);
storeDTO
.
setBusinessTimeList
(
businessTimeList
);
ObjectMapper
mapper
=
new
ObjectMapper
();
try
{
List
<
StoreBusinessTimeDTO
>
businessTimeList
=
mapper
.
readValue
(
businessTimes
,
new
TypeReference
<
List
<
StoreBusinessTimeDTO
>>()
{});
storeDTO
.
setBusinessTimeList
(
businessTimeList
);
}
catch
(
IOException
e
)
{
// e.printStackTrace();
logger
.
warn
(
"营业时间转换失败"
,
e
);
}
// List<StoreBusinessTimeDTO> businessTimeList = JSON.parseArray(businessTimes, StoreBusinessTimeDTO.class);
}
storeDTO
.
setCreateType
(
CreateTypeEnum
.
BACKGROUND_ADD
.
getCode
());
String
fieldJson
=
storeQO
.
getStoreExtends
();
...
...
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