| | |
| | | return BaseResponseUtils.buildSuccess(res); |
| | | } |
| | | |
| | | /** |
| | | * 大屏展示---基本信息 |
| | | * @return 基本信息 |
| | | */ |
| | | @Operation(summary = "大屏展示", description = "基本信息") |
| | | @ApiResponses(value = { |
| | | @ApiResponse( |
| | | responseCode = ResultCodeMsg.RsCode.SUCCESS_CODE, |
| | | description = "基本信息(BaseResponse.content:VoBaseInfo{})", |
| | | content = {@Content(mediaType = MediaType.APPLICATION_JSON_VALUE, |
| | | schema = @Schema(implementation = VoBaseInfo.class))} |
| | | ) |
| | | }) |
| | | @GetMapping(path = "basicInfo") |
| | | @SsoAop() |
| | | public BaseResponse<VoBaseInfo> basicInfo() { |
| | | VoBaseInfo res = this.sv.baseInfo(); |
| | | return BaseResponseUtils.buildSuccess(res); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 大屏展示---当前信息 |