Althars123 vor 3 Jahren
Ursprung
Commit
7d934680e8

+ 4 - 2
twzd-admin/src/main/java/com/miaxis/app/controller/h5/QuestionInfoController.java

@@ -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));
     }