fix: 修复系统变量显示问题

This commit is contained in:
taojinlong
2024-06-03 19:24:31 +08:00
parent 16d59975f9
commit ca3e8aaea7
14 changed files with 140 additions and 18 deletions

View File

@@ -71,6 +71,11 @@ public interface DatasourceApi {
@GetMapping("/get/{datasourceId}")
DatasourceDTO get(@PathVariable("datasourceId") Long datasourceId) throws DEException;
@DePermit({"#p0+':read'"})
@GetMapping("/hidePw/{datasourceId}")
DatasourceDTO hidePw(@PathVariable("datasourceId") Long datasourceId) throws DEException;
@PostMapping("/getTableField")
List<TableField> getTableField(@RequestBody Map<String, String> req) throws DEException;

View File

@@ -30,4 +30,6 @@ public class ExportTaskDTO {
private String exportMachineName;
private String exportFromName;
private String orgName;
}