|
|
|
@@ -84,9 +84,9 @@ public class WorkspaceController extends BaseController { |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping("/getPublicCodeConfigs") |
|
|
|
@ApiOperation("前6个代码配置") |
|
|
|
@ApiOperation("前9个代码配置") |
|
|
|
public GenericsAjaxResult<Page<CodeConfig>> getPublicCodeConfigs() { |
|
|
|
PageRequest pageRequest = PageRequest.of(0, 6); |
|
|
|
PageRequest pageRequest = PageRequest.of(0, 9); |
|
|
|
CodeConfig codeConfig = new CodeConfig(); |
|
|
|
return genericsSuccess(this.codeConfigService.queryByPage(codeConfig, pageRequest)); |
|
|
|
} |
|
|
|
|