gaodm пре 6 година
родитељ
комит
3bb9029e44

+ 1 - 3
icssman-service/src/main/java/com/diagbot/web/QuestionInfoController.java

@@ -61,7 +61,6 @@ public class QuestionInfoController {
     @SysLogger("list")
     public RespDTO<IPage<QuestionPageDTO>> list(@RequestBody QuestionPageVO questionPageVO) {
         IPage<QuestionPageDTO> data = questionFacade.getListFac(questionPageVO);
-
         return RespDTO.onSuc(data);
     }
 
@@ -74,14 +73,13 @@ public class QuestionInfoController {
         List<QuestionInfo> data = questionFacade.indexFac(questionIndexVO);
         return RespDTO.onSuc(data);
     }
-    
+
     @ApiOperation(value = "别名新增标签检索[by:rengb]",
             notes = "")
     @PostMapping("/indexRev")
     @SysLogger("indexRev")
     public RespDTO<List<QuestionInfo>> indexRev(@RequestBody QuestionIndexVO questionIndexVO) {
         List<QuestionInfo> data = questionFacade.indexRev(questionIndexVO);
-
         return RespDTO.onSuc(data);
     }