src/main/java/com/epam/digital/data/platform/generator/factory/impl/EntityScopeFactory.java [45:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public List<ModelScope> create(Context context) {
    return context.getCatalog().getTables().stream()
        .filter(this::isRecentDataTable)
        .map(
            t -> {
              var scope = new ModelScope();
              scope.setClassName(getSchemaName(t) + "Model");
              scope.getFields().addAll(getFields(t.getColumns()));
              return scope;
            })
        .collect(toList());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/epam/digital/data/platform/generator/factory/impl/ReadNestedFieldEntityScopeFactory.java [46:57]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public List<ModelScope> create(Context context) {
    return context.getCatalog().getTables().stream()
        .filter(this::isRecentDataTable)
        .map(
            t -> {
              var scope = new ModelScope();
              scope.setClassName(getSchemaName(t) + "ReadNested");
              scope.getFields().addAll(getFields(t.getColumns()));
              return scope;
            })
        .collect(toList());
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



