| | |
| | | @ApiOperation(value = "获取题目数据", notes = "H5") |
| | | @GetMapping("/getProblemsVO") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query", dataType = "Integer", name = "useType", value = "使用场景 0劳务人员 1普通访客", required = true) |
| | | @ApiImplicitParam(paramType = "query", dataType = "Integer", name = "useType", value = "使用场景 2劳务人员 1普通访客", required = true) |
| | | }) |
| | | public ApiResponse<List<ProblemsVO>> getProblemsVO(@RequestParam Integer useType) { |
| | | return ApiResponse.success("查询成功",problemsService.getProblemsVO(useType)); |