|
@@ -157,8 +157,10 @@ public class QuestionInfoController extends BaseController{
|
|
|
*/
|
|
|
@GetMapping(value = "/selectSxQustionInfo")
|
|
|
@ApiOperation("获取顺序练习分类")
|
|
|
- public List<QuestionInfoSxVO> selectSxQuestionInfo(@ModelAttribute QuestionInfoFlDTO questionInfoFlDTO) {
|
|
|
- return questionInfoService.selectSxQuestionInfo(questionInfoFlDTO);
|
|
|
+ public Response<List<QuestionInfoSxVO>> selectSxQuestionInfo(@ModelAttribute QuestionInfoFlDTO questionInfoFlDTO) {
|
|
|
+
|
|
|
+
|
|
|
+ return Response.success(questionInfoService.selectSxQuestionInfo(questionInfoFlDTO));
|
|
|
}
|
|
|
|
|
|
|