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

com.arextest.storage.model.TableSchema Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.arextest.storage.model;


import java.util.List;
import lombok.Data;

/**
 * @since 2024/5/10
 */
@Data
public class TableSchema {
    String dbName;
    /**
     * Joint query sql statement parses out multiple table names
     */
    List tableNames;
    /**
     * eg: query/insert/update/delete
     */
    String action;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy