forked from xin497668869/binlog2sql_java
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTable.java
More file actions
43 lines (34 loc) · 825 Bytes
/
Table.java
File metadata and controls
43 lines (34 loc) · 825 Bytes
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
package com.seewo.binlog2sql;
import java.util.List;
/**
* @author linxixin@cvte.com
* @version 1.0
* @description
*/
public class Table {
private String dbName;
private String tableName;
private List<String> columns;
public Table(String dbName, String tableName) {
this.dbName = dbName;
this.tableName = tableName;
}
public String getTableName() {
return tableName;
}
public void setTableName(String tableName) {
this.tableName = tableName;
}
public List<String> getColumns() {
return columns;
}
public void setColumns(List<String> columns) {
this.columns = columns;
}
public String getDbName() {
return dbName;
}
public void setDbName(String dbName) {
this.dbName = dbName;
}
}