|
@@ -34,6 +34,7 @@ import com.zhongzheng.modules.bank.vo.QuestionVo;
|
|
|
import com.zhongzheng.modules.base.bo.ConfigQueryBo;
|
|
|
import com.zhongzheng.modules.course.bo.ExternalQuestionBo;
|
|
|
import com.zhongzheng.modules.course.bo.ReplenishExamBo;
|
|
|
+import com.zhongzheng.modules.course.vo.CourseChapterVo;
|
|
|
import com.zhongzheng.modules.course.vo.ExternalQuestionVo;
|
|
|
import com.zhongzheng.modules.course.vo.ReplenishExamVo;
|
|
|
import com.zhongzheng.modules.distribution.bo.DistributionActivityGoodsQueryBo;
|
|
@@ -778,6 +779,14 @@ public class CommonController extends BaseController {
|
|
|
return AjaxResult.success(iClassGradeUserService.pushOfficialPeriodMore(list));
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("批量学时信息推送CC")
|
|
|
+ @PreAuthorize("@ss.hasPermi('app:user:edit')")
|
|
|
+ @PostMapping("/common/free/pushPeriodCC")
|
|
|
+ public AjaxResult pushPeriodCC(@RequestBody ClassGradeUserQueryBo bo) {
|
|
|
+ List<CourseChapterVo> chapterList = iClassGradeUserService.findChapterList(bo);
|
|
|
+ return AjaxResult.success();
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation("测试获取山东题库")
|
|
|
@PreAuthorize("@ss.hasPermi('system:withdrawal:add')")
|
|
|
@Log(title = "测试获取山东题库", businessType = BusinessType.INSERT)
|