|
|
@@ -30,11 +30,15 @@ import com.zhongzheng.modules.grade.service.IClassGradeUserService;
|
|
|
import com.zhongzheng.modules.grade.service.IClassGradeUserTempService;
|
|
|
import com.zhongzheng.modules.grade.vo.ClassGradeUserGoodsVo;
|
|
|
import com.zhongzheng.modules.grade.vo.ClassGradeUserVo;
|
|
|
+import com.zhongzheng.modules.inform.bo.InformQueryBo;
|
|
|
import com.zhongzheng.modules.inform.bo.InformUserAddBo;
|
|
|
+import com.zhongzheng.modules.inform.domain.Inform;
|
|
|
+import com.zhongzheng.modules.inform.domain.InformUser;
|
|
|
import com.zhongzheng.modules.inform.service.IInformRemindService;
|
|
|
import com.zhongzheng.modules.inform.service.IInformService;
|
|
|
import com.zhongzheng.modules.inform.service.IInformUserService;
|
|
|
import com.zhongzheng.modules.inform.vo.InformRemindVo;
|
|
|
+import com.zhongzheng.modules.inform.vo.InformVo;
|
|
|
import com.zhongzheng.modules.order.bo.OrderQueryBo;
|
|
|
import com.zhongzheng.modules.order.domain.Order;
|
|
|
import com.zhongzheng.modules.order.mapper.OrderMapper;
|
|
|
@@ -482,6 +486,22 @@ public class ScheduleServiceImpl extends ServiceImpl<PolyvVideoMapper, PolyvVide
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public void updateIssue(UserQueryBo bo) {
|
|
|
+ InformQueryBo informQueryBo = new InformQueryBo();
|
|
|
+ informQueryBo.setIssue(1);
|
|
|
+ informQueryBo.setIssueStatus(2);
|
|
|
+ List<InformVo> informVos = informService.listInform(informQueryBo);
|
|
|
+ for (InformVo informVo : informVos) {
|
|
|
+ LambdaQueryWrapper<InformUser> lqw = Wrappers.lambdaQuery();
|
|
|
+ lqw.eq(InformUser::getInformId, informVo.getInformId());
|
|
|
+ InformUser informUser = new InformUser();
|
|
|
+ informUser.setSendTime(DateUtils.getNowTime());
|
|
|
+ informUser.setSendStatus(1);
|
|
|
+ iInformUserService.update(informUser,lqw);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
private void sendExamSubscribe() {
|
|
|
List<ExamUserApplyVo> examUserApplyVos = iInformUserService.listUserApply();
|