whycxzp
2022-01-12 e9f7312050bfefbd1afa6921a7ddd854fb4aff8f
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;
    }
}