|
@@ -26,6 +26,7 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
+import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
|
|
import javax.validation.Valid;
|
|
|
import java.util.List;
|
|
@@ -78,6 +79,16 @@ public class QuestionInfoController {
|
|
|
return RespDTO.onSuc(data);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "标签检索[by:zhoutg]",
|
|
|
+ notes = "")
|
|
|
+ @PostMapping("/indexForkl")
|
|
|
+ @SysLogger("indexForkl")
|
|
|
+ @ApiIgnore
|
|
|
+ public RespDTO<List<QuestionInfo>> indexForkl(@RequestBody QuestionIndexVO questionIndexVO) {
|
|
|
+ List<QuestionInfo> data = questionFacade.indexFac(questionIndexVO);
|
|
|
+ return RespDTO.onSuc(data);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "子标签检索[by:zhaops]",
|
|
|
notes = "")
|
|
|
@PostMapping("/indexSub")
|