|
@@ -30,17 +30,17 @@ import io.swagger.annotations.ApiOperation;
|
|
|
@Api(value = "知识库标准化-问题词数据维护相关API[by:wangfeng]", tags = { "知识库标准化-问题词数据维护相关API——WF" })
|
|
|
public class DiagnoseQuestionController {
|
|
|
|
|
|
- @Autowired
|
|
|
- DiagnoseQuestionFacade diagnoseQuestionFacade;
|
|
|
-
|
|
|
- @ApiOperation(value = "诊断依据问题词数据维护-分页查询[by:wangfeng]")
|
|
|
- @PostMapping("/queryQuestionPage")
|
|
|
- @SysLogger("queryQuestionPage")
|
|
|
- @Transactional
|
|
|
- public RespDTO<IPage<DiagnoseQuestionPageDTO>> queryQuestionPage(@RequestBody DiagnoseQuestionPageVO diagnoseQuestionPageVO) {
|
|
|
-
|
|
|
- IPage<DiagnoseQuestionPageDTO> data = diagnoseQuestionFacade.queryQuestionPage(diagnoseQuestionPageVO);
|
|
|
- return RespDTO.onSuc(data);
|
|
|
- }
|
|
|
+ @Autowired
|
|
|
+ DiagnoseQuestionFacade diagnoseQuestionFacade;
|
|
|
+
|
|
|
+ @ApiOperation(value = "诊断依据问题词数据维护-分页查询[by:wangfeng]")
|
|
|
+ @PostMapping("/queryQuestionPage")
|
|
|
+ @SysLogger("queryQuestionPage")
|
|
|
+ @Transactional
|
|
|
+ public RespDTO<IPage<DiagnoseQuestionPageDTO>> queryQuestionPage(@RequestBody DiagnoseQuestionPageVO diagnoseQuestionPageVO) {
|
|
|
+
|
|
|
+ IPage<DiagnoseQuestionPageDTO> data = diagnoseQuestionFacade.queryQuestionPage(diagnoseQuestionPageVO);
|
|
|
+ return RespDTO.onSuc(data);
|
|
|
+ }
|
|
|
|
|
|
}
|