Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mall-server
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
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
yimu
mall-server
Commits
c7ae4bb8
Commit
c7ae4bb8
authored
Mar 25, 2022
by
wlx@33.cn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加服务器时间查询接口
parent
69fc0ffc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
SysConfigController.java
...l/server/front/system/controller/SysConfigController.java
+12
-7
No files found.
mall-server-front/src/main/java/com/fzm/mall/server/front/system/controller/SysConfigController.java
View file @
c7ae4bb8
...
...
@@ -3,17 +3,16 @@ package com.fzm.mall.server.front.system.controller;
import
com.fzm.mall.server.front.base.ResponseVO
;
import
com.fzm.mall.server.front.constant.MallResponseEnum
;
import
com.fzm.mall.server.front.goods.model.Banner
;
import
com.fzm.mall.server.front.system.model.SysConfig
;
import
com.fzm.mall.server.front.system.service.ISysConfigService
;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
java.util.List
;
import
java.text.SimpleDateFormat
;
import
java.util.Calendar
;
/**
* <p>
...
...
@@ -32,12 +31,18 @@ public class SysConfigController {
@ApiOperation
(
value
=
"获取logo"
)
@PostMapping
(
"/without/getLogo"
)
public
ResponseVO
<
String
>
getLogo
(){
public
ResponseVO
<
String
>
getLogo
()
{
String
key
=
"coin_logo"
;
SysConfig
sys
=
sysConfigService
.
getByKey
(
key
);
if
(
sys
==
null
){
return
new
ResponseVO
<>(
MallResponseEnum
.
SUCCESS
,
""
);
if
(
sys
==
null
)
{
return
new
ResponseVO
<>(
MallResponseEnum
.
SUCCESS
,
""
);
}
return
new
ResponseVO
<>(
MallResponseEnum
.
SUCCESS
,
sys
.
getDictValue
());
}
return
new
ResponseVO
<>(
MallResponseEnum
.
SUCCESS
,
sys
.
getDictValue
());
@ApiOperation
(
value
=
"获取服务器时间"
)
@PostMapping
(
"/without/read/systemTime"
)
public
ResponseVO
<
String
>
systemTime
()
{
return
new
ResponseVO
<>(
MallResponseEnum
.
SUCCESS
,
new
SimpleDateFormat
(
"yyyy-MM-dd HH:mm:ss"
).
format
(
Calendar
.
getInstance
().
getTime
()));
}
}
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