support view trigger producer function

This commit is contained in:
jipengfei-jpf
2023-08-12 15:43:15 +08:00
parent 9fa8720786
commit 59b31f5e41
25 changed files with 745 additions and 276 deletions

View File

@ -43,6 +43,13 @@ public class ConnectInfo {
*/
private String databaseName;
/**
* schema
*/
private String schemaName;
/**
* 控制台ID
*/
@ -73,6 +80,9 @@ public class ConnectInfo {
*/
private String dbType;
/**
* 端口
*/
private Integer port;
/**
@ -486,4 +496,11 @@ public class ConnectInfo {
this.gmtModified = gmtModified;
}
public String getSchemaName() {
return schemaName;
}
public void setSchemaName(String schemaName) {
this.schemaName = schemaName;
}
}