|
@@ -12,6 +12,7 @@ import com.zhongzheng.modules.course.bo.CourseEducationTypeQueryBo;
|
|
|
import com.zhongzheng.modules.course.service.ICourseEducationTypeService;
|
|
|
import com.zhongzheng.modules.course.service.ICourseService;
|
|
|
import com.zhongzheng.modules.course.vo.CourseEducationTypeVo;
|
|
|
+import com.zhongzheng.modules.exam.bo.ExamApplyQueryBo;
|
|
|
import com.zhongzheng.modules.goods.vo.GoodsPeriodStatusVo;
|
|
|
import com.zhongzheng.modules.goods.vo.GoodsPeriodVo;
|
|
|
import com.zhongzheng.modules.goods.vo.GoodsVo;
|
|
@@ -69,6 +70,18 @@ public class CoursePeriodController extends BaseController {
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取考试安排详细信息
|
|
|
+ */
|
|
|
+ @ApiOperation("查看该商品是否有重修 1为有 2为没有")
|
|
|
+ @GetMapping("/rebuildNext")
|
|
|
+ public AjaxResult<Long> rebuildNext(ClassGradeUserQueryBo bo) {
|
|
|
+ ClientLoginUser loginUser = wxTokenService.getLoginUser(ServletUtils.getRequest());
|
|
|
+ bo.setUserId(loginUser.getUser().getUserId());
|
|
|
+ Long count = courseService.rebuildNext(bo);
|
|
|
+ return AjaxResult.success(count);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 修改用户预约考试
|
|
|
*/
|