|
@@ -61,6 +61,7 @@ import com.zhongzheng.modules.goods.service.IGoodsService;
|
|
|
import com.zhongzheng.modules.goods.vo.BankGoodsExamVo;
|
|
|
import com.zhongzheng.modules.goods.vo.GoodsCourseVo;
|
|
|
import com.zhongzheng.modules.goods.vo.GoodsVo;
|
|
|
+import com.zhongzheng.modules.grade.bo.ClassGradeQueryBo;
|
|
|
import com.zhongzheng.modules.grade.bo.ClassGradeUserQueryBo;
|
|
|
import com.zhongzheng.modules.grade.domain.*;
|
|
|
import com.zhongzheng.modules.grade.service.*;
|
|
@@ -2856,7 +2857,20 @@ public class ScheduleServiceImpl extends ServiceImpl<PolyvVideoMapper, PolyvVide
|
|
|
|
|
|
@Override
|
|
|
public void noFinishExamToStudentThree(UserQueryBo bo) {
|
|
|
+ //3天要结束
|
|
|
+ Calendar cal1 = new GregorianCalendar();
|
|
|
+ cal1.add(Calendar.DATE, -4);
|
|
|
+ Long startTime = cal1.getTimeInMillis() / 1000;
|
|
|
+ Calendar cal2 = new GregorianCalendar();
|
|
|
+ cal2.add(Calendar.DATE, -3);
|
|
|
+ Long endTime = cal2.getTimeInMillis() / 1000;
|
|
|
+ ClassGradeQueryBo queryBo = new ClassGradeQueryBo();
|
|
|
+ queryBo.setStartTime(startTime);
|
|
|
+ queryBo.setEndTime(endTime);
|
|
|
+ List<ClassGradeVo> gradeVoList = iClassGradeService.queryGradeList(queryBo);
|
|
|
+ for(ClassGradeVo gradeVo : gradeVoList){
|
|
|
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Override
|