kimi
2020-05-27 2893347bf72477c4d108e8589a0f61e3e97a990c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.highdatas.mdm.entity;
 
import lombok.Data;
 
/**
 * @author kimi
 * @description
 * @date 2019-12-16 15:04
 */
 
@Data
public class TableSchema {
    /*
     * 表名
     * */
    private String tableName;
    /*
     * schema
     * */
    private String dbName;
 
}