|
|
@@ -61,7 +61,7 @@ public class BizWxAppletQuestionController extends BaseController{
|
|
|
|
|
|
|
|
|
@ApiOperationSupport(author = "lf", order = 3)
|
|
|
- @ApiOperation(value = "查看术后问卷详细信息", notes = "权限: 无")
|
|
|
+ @ApiOperation(value = "查看术后问卷回答的详细信息", notes = "权限: 无")
|
|
|
@GetMapping("/question/detail/{answerId}")
|
|
|
public CommonResult<BizWebQuestionAnswerDTO> selectQuestionnaireDetail(@PathVariable String answerId) {
|
|
|
return CommonResult.success(questionAnswerService.selectDetailByAnswerId(answerId));
|
|
|
@@ -86,7 +86,7 @@ public class BizWxAppletQuestionController extends BaseController{
|
|
|
|
|
|
@ApiOperationSupport(author = "lf", order = 6)
|
|
|
@GetMapping("/groupDetail/{id}")
|
|
|
- @ApiOperation(value = "获取术后问卷信息",notes = "权限: 无")
|
|
|
+ @ApiOperation(value = "获取术后问卷信息(包含问题)",notes = "权限: 无")
|
|
|
public CommonResult<BizWebQuestionGroupVO> selectQuestionnaireById(@PathVariable("id") String id) {
|
|
|
return CommonResult.success(questionGroupService.selectBizQuestionGroupById(id));
|
|
|
}
|