-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathSQLQuery.java
More file actions
49 lines (38 loc) · 1.06 KB
/
Copy pathSQLQuery.java
File metadata and controls
49 lines (38 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package demos.utils;
public class SQLQuery {
private String name;
private String database;
private String schema;
private String groupName;
private String sourceCode;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDatabase() {
return database;
}
public void setDatabase(String database) {
this.database = database;
}
public String getSchema() {
return schema;
}
public void setSchema(String schema) {
this.schema = schema;
}
public String getGroupName() {
return groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getSourceCode() {
return sourceCode;
}
public void setSourceCode(String sourceCode) {
this.sourceCode = sourceCode;
}
}