|
|
@@ -111,6 +111,7 @@ import com.zhongzheng.modules.user.mapper.UserPlanMapper;
|
|
|
import com.zhongzheng.modules.user.mapper.UserStudyRecordMapper;
|
|
|
import com.zhongzheng.modules.user.service.*;
|
|
|
import com.zhongzheng.modules.user.vo.*;
|
|
|
+import com.zhongzheng.modules.wisdom.service.IWisdomService;
|
|
|
import com.zhongzheng.modules.wx.service.IWxLoginService;
|
|
|
import com.zhongzheng.modules.wx.service.IWxPayService;
|
|
|
import net.polyv.live.v1.entity.channel.playback.LiveChannelVideoListResponse;
|
|
|
@@ -267,6 +268,9 @@ public class ScheduleServiceImpl extends ServiceImpl<PolyvVideoMapper, PolyvVide
|
|
|
@Autowired
|
|
|
private IWxLoginService iWxLoginService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private IWisdomService iWisdomService;
|
|
|
+
|
|
|
@Value("${aliyun.sms.OpenTheGoodsCode}")
|
|
|
private String OpenTheGoodsCode;
|
|
|
|
|
|
@@ -2041,6 +2045,11 @@ public class ScheduleServiceImpl extends ServiceImpl<PolyvVideoMapper, PolyvVide
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public void wisdomExamSite(UserQueryBo bo) {
|
|
|
+ iWisdomService.authorization();
|
|
|
+ }
|
|
|
+
|
|
|
private Long formatTime(Long startTime, String addTime) throws ParseException{
|
|
|
Long times = startTime*1000;//时间戳
|
|
|
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
|