| | |
| | | * 客户端请求得到默认密码 |
| | | * @return 默认密码 |
| | | */ |
| | | @Operation(summary = "获得一页用户", description = "返回一页用户数据") |
| | | @Operation(summary = "获得默认密码", description = "获得默认密码") |
| | | @ApiResponses(value = { |
| | | @ApiResponse( |
| | | responseCode = ResultCodeMsg.RsCode.SUCCESS_CODE, |
| | |
| | | schema = @Schema(implementation = String.class))} |
| | | ) |
| | | }) |
| | | @GetMapping(path = "defaultPassword", consumes = MediaType.TEXT_PLAIN_VALUE) |
| | | @GetMapping(path = "defaultPassword") |
| | | public BaseResponse<String> defaultPassword(){ |
| | | if(defaultTrueRandomFalsePassword){ |
| | | return BaseResponseUtils.buildSuccess(defaultPassword) ; |