数据源的增删改查

master
冷调 2024-08-23 00:44:54 +08:00
parent 8acd6e7c21
commit fcc0efb9b0
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ public class DataSourceController extends BaseController {
* @param id ID
* @return
*/
@GetMapping("/getDataSourceById/{id}")
@GetMapping("/getDataSource/{id}")
@Operation(summary = "根据ID获取数据", description = "根据ID获取数据")
public Result<DataSource> getDataSourceById(@PathVariable("id") Long id) {
DataSource dataSource = dataSourceService.getById(id);