support add service name

This commit is contained in:
SwallowGG
2023-11-09 17:29:36 +08:00
parent 1b36648819
commit c29db6aeab
14 changed files with 744 additions and 11 deletions

View File

@ -102,5 +102,15 @@ public class DataSourceCreateRequest {
@NotNull
private Long environmentId;
/**
* 服务名称
*/
private String serviceName;
/**
* 服务类型
*/
private String serviceType;
}

View File

@ -105,4 +105,14 @@ public class DataSourceUpdateRequest {
*/
@NotNull
private Long environmentId;
/**
* 服务名称
*/
private String serviceName;
/**
* 服务类型
*/
private String serviceType;
}