Commit 728f7309 by qwmqiuwenmin

fix

parent a37f9e8c
......@@ -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);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment