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.
26 lines
544 B
26 lines
544 B
6 years ago
|
export interface LinkType{
|
||
|
connectionId?: string;
|
||
|
database?: string;
|
||
|
connectionName?: string;
|
||
|
driver?: 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;
|
||
|
}
|