|
@@ -307,6 +307,9 @@ public class ScheduleServiceImpl extends ServiceImpl<PolyvVideoMapper, PolyvVide
|
|
|
@Value("${aliyun.sms.longNotStudyTeacherRemind}")
|
|
@Value("${aliyun.sms.longNotStudyTeacherRemind}")
|
|
|
private String longNotStudyTeacherRemind;
|
|
private String longNotStudyTeacherRemind;
|
|
|
|
|
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private RedisCache redisCache;
|
|
|
|
|
+
|
|
|
@Override
|
|
@Override
|
|
|
public String updateGoodsSend(UserQueryBo bo) {
|
|
public String updateGoodsSend(UserQueryBo bo) {
|
|
|
InformRemindVo informRemindVo = informRemindService.queryById(1L);
|
|
InformRemindVo informRemindVo = informRemindService.queryById(1L);
|
|
@@ -2117,6 +2120,15 @@ public class ScheduleServiceImpl extends ServiceImpl<PolyvVideoMapper, PolyvVide
|
|
|
iWisdomService.syncApplyUserInfo(192L);
|
|
iWisdomService.syncApplyUserInfo(192L);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public void refreshToken(UserQueryBo bo) {
|
|
|
|
|
+ String key = "WX_SMALL_ACCESS_TOKEN";
|
|
|
|
|
+ redisCache.deleteObject(key);
|
|
|
|
|
+ String key2 = "WX_GZH_ACCESS_TOKEN";
|
|
|
|
|
+ redisCache.deleteObject(key2);
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
private Long formatTime(Long startTime, String addTime) throws ParseException{
|
|
private Long formatTime(Long startTime, String addTime) throws ParseException{
|
|
|
Long times = startTime*1000;//时间戳
|
|
Long times = startTime*1000;//时间戳
|
|
|
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
|
|
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
|