whycxzp
2022-04-22 7f9ac4bf1b38b8e622f8c759efeca2af9dc12a48
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
package com.whyc.dto;
 
public class TableDTO {
 
    private String dbName;
    private String tableName;
 
    public TableDTO(String dbName, String tableName) {
        this.dbName = dbName;
        this.tableName = tableName;
    }
 
    public String getDbName() {
        return dbName;
    }
 
    public void setDbName(String dbName) {
        this.dbName = dbName;
    }
 
    public String getTableName() {
        return tableName;
    }
 
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
}