| | |
| | | import io.swagger.v3.oas.annotations.Parameter; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | |
| | | |
| | | String PREFIX = ApiConstants.PREFIX + "/data-source"; |
| | | |
| | | @PostMapping(PREFIX + "/get") |
| | | @GetMapping(PREFIX + "/get-data-source-config") |
| | | @Operation(summary = "获得数据源配置") |
| | | @Parameter(name = "id", description = "编号", required = true, example = "1024") |
| | | DataSourceConfigRespDTO getDataSourceConfig(@RequestParam("id") Long id); |