|
@@ -10,6 +10,7 @@ import com.fs.course.domain.*;
|
|
|
import com.fs.course.param.*;
|
|
import com.fs.course.param.*;
|
|
|
import com.fs.course.service.*;
|
|
import com.fs.course.service.*;
|
|
|
import com.fs.course.vo.*;
|
|
import com.fs.course.vo.*;
|
|
|
|
|
+import com.fs.his.service.IFsCourseReissueConfigService;
|
|
|
import com.fs.his.vo.OptionsVO;
|
|
import com.fs.his.vo.OptionsVO;
|
|
|
import com.github.pagehelper.PageHelper;
|
|
import com.github.pagehelper.PageHelper;
|
|
|
import com.github.pagehelper.PageInfo;
|
|
import com.github.pagehelper.PageInfo;
|
|
@@ -50,6 +51,8 @@ public class CourseController extends AppBaseController{
|
|
|
private IFsCourseSopAppLinkService courseSopAppLinkService;
|
|
private IFsCourseSopAppLinkService courseSopAppLinkService;
|
|
|
@Autowired
|
|
@Autowired
|
|
|
private IFsCourseWatchLogService courseWatchLogService;
|
|
private IFsCourseWatchLogService courseWatchLogService;
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private IFsCourseReissueConfigService courseReissueConfigService;
|
|
|
|
|
|
|
|
|
|
|
|
|
// @Cacheable(value="getCourseCate" )
|
|
// @Cacheable(value="getCourseCate" )
|
|
@@ -376,4 +379,10 @@ public class CourseController extends AppBaseController{
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @ApiOperation("获取飞书答题页面数据")
|
|
|
|
|
+ @GetMapping("/getFeiShuAnswerInfo")
|
|
|
|
|
+ public R getFeiShuAnswerInfo(HttpServletRequest request){
|
|
|
|
|
+ return R.ok().put("data",courseReissueConfigService.getConfigInfoRedis());
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
}
|
|
}
|