All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hundsun.lightdb.unisql.model.TableMeta Maven / Gradle / Ivy

There is a newer version: 24.1.7.0-beta-2
Show newest version
package com.hundsun.lightdb.unisql.model;

import java.util.ArrayList;
import java.util.List;

import lombok.Data;

/**
 * 表的元数据
 * 
 * @author zhuxd
 * @date 2024/5/23
 */
@Data
public class TableMeta {
    /**
     * 源端数据库
     */
    String sourceDialect;
    /**
     * 目标端数据库
     */
    String targetDialect;
    /**
     * 表名
     */
    String tableName;
    /**
     * 所有的列
     */
    List tableColumns;
    /**
     * 查询条件需要忽略的列、别名
     */
    List ignoreColumns;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy