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

com.smartnews.jpa_entity_generator.rule.TableScanRule Maven / Gradle / Ivy

There is a newer version: 0.99.9
Show newest version
package com.smartnews.jpa_entity_generator.rule;

import lombok.Data;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

/**
 * Rule used to filter the tables to generate entities.
 */
@Data
public class TableScanRule implements Serializable, TableMatcher {

    private String tableName;
    private List tableNames = new ArrayList<>();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy