You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
582 B
27 lines
582 B
export interface LinkType{ |
|
connectionId?: string; |
|
database?: string; |
|
connectionName?: string; |
|
driver?: string; |
|
drivers?: string[]; |
|
url?: string; |
|
user?: string; |
|
password?: string; |
|
queryType?: string; |
|
newCharsetName?: any; |
|
originalCharsetName?: any; |
|
validationQuery?: string; |
|
schema?: string; |
|
testOnBorrow?: boolean; |
|
maxActive?: number; |
|
options?: any; |
|
port?: number; |
|
authType?: string; |
|
creator?: string; |
|
principal?: string; |
|
keyPath?: string; |
|
databaseType?: string; |
|
privilegeDetailBeanList?: any; |
|
isSelected?: boolean; |
|
text: string; |
|
}
|
|
|