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
728f7309
Commit
728f7309
authored
Nov 26, 2020
by
qwmqiuwenmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
a37f9e8c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
WxEnterpriseController.java
.../haoban/manage/web/controller/WxEnterpriseController.java
+13
-2
No files found.
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/controller/WxEnterpriseController.java
View file @
728f7309
...
...
@@ -546,10 +546,11 @@ public class WxEnterpriseController extends WebBaseController{
Date
exeDate
=
DateUtil
.
addDay
(
now
,
1
);
Calendar
ca
=
Calendar
.
getInstance
();
ca
.
setTime
(
now
);
int
hour
=
ca
.
get
(
Calendar
.
HOUR
);
int
day
=
ca
.
get
(
Calendar
.
DAY_OF_MONTH
);
//第几天
int
month
=
ca
.
get
(
Calendar
.
MONTH
);
//第几个月
int
year
=
ca
.
get
(
Calendar
.
YEAR
);
//年份数值
int
hour
=
4
;
//
//
int hour = 4;//
int
minute
=
ca
.
get
(
Calendar
.
MINUTE
);
//
int
second
=
ca
.
get
(
Calendar
.
SECOND
);
//
String
con
=
second
+
" "
+
minute
+
" "
+
hour
+
" "
+
day
+
" "
+
month
+
" "
+
year
;
...
...
@@ -584,6 +585,16 @@ public class WxEnterpriseController extends WebBaseController{
return
resultResponse
(
HaoBanErrCode
.
ERR_1
,
RedisUtil
.
getCache
(
dateKey
));
}
/**
* 获取刷新好友开关接口
* @return
*/
@RequestMapping
(
"/get-fresh-on-off"
)
public
HaobanResponse
getFreshOnOff
(){
LoginVO
login
=
(
LoginVO
)
AuthRequestUtil
.
getLoginUser
();
String
wxEnterpriseId
=
login
.
getWxEnterpriseId
();
String
dateKey
=
"haoban_fresh-wx-friend-enterprise"
+
wxEnterpriseId
;
return
resultResponse
(
HaoBanErrCode
.
ERR_1
,
RedisUtil
.
getCache
(
dateKey
)
!=
null
);
}
}
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