mirror of
https://github.com/dataease/dataease.git
synced 2026-05-19 18:38:16 +08:00
perf(X-Pack): 游离资源管理页面
This commit is contained in:
@@ -159,4 +159,7 @@ public interface DatasourceApi {
|
||||
|
||||
List<DatasourceDTO> innerList(List<Long> ids, List<String> types) throws DEException;
|
||||
|
||||
@GetMapping("/simple/{id}")
|
||||
DsSimpleVO simple(@PathVariable("id") Long id);
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
package io.dataease.api.ds.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
public class DsSimpleVO implements Serializable {
|
||||
@Serial
|
||||
private static final long serialVersionUID = 46446424188194481L;
|
||||
|
||||
private String name;
|
||||
|
||||
private String type;
|
||||
|
||||
private String description;
|
||||
|
||||
private String host;
|
||||
}
|
||||
Reference in New Issue
Block a user